Bu yöntem, Bluetooth menü çubuğunun durum simgesinin AppleScript GUI komut dosyası göstermesini ve kullanılmasını gerektirmiştir ( Sistem Tercihleri »Evrensel Erişim» Yardımcı aygıtlar IIRC için destek gerektirir ):
tell application "System Events"
tell process "SystemUIServer"
tell (menu bar item 1 of menu bar 1 whose description is "bluetooth")
click
click menu 1's second menu item
end tell
end tell
end tell
Komut satırından aşağıdakileri kullanarak arayın osascript
:
osascript -e 'tell application "System Events" to tell process "SystemUIServer" to tell (menu bar item 1 of menu bar 1 whose description is "bluetooth") to {click, click (menu item 2 of menu 1)}'
Bu yayını düzenlemeyin. Kaydırma çubuğunu beğenmemeniz umrumda değil. Bu şekilde üçe tıklayarak seçmek daha kolaydır.
Alternatif olarak, Sistem Tercihleri'ni başlatabilir ve onay kutusunu tıklatabilirsiniz:
tell application "System Preferences"
set current pane to pane id "com.apple.preferences.bluetooth"
tell application "System Events"
tell process "System Preferences"
click checkbox "On" of window "Bluetooth"
end tell
end tell
quit
end tell
Bir GUI işlemi başlatılırken, Dock simgesi dışında görünmez.