Skip to content

Instantly share code, notes, and snippets.

@andrewheiss
Created May 29, 2013 01:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewheiss/5667322 to your computer and use it in GitHub Desktop.
Save andrewheiss/5667322 to your computer and use it in GitHub Desktop.
Toggle Bluetooth menu item
tell application "System Preferences"
activate
set the current pane to pane "Bluetooth"
delay 1
end tell
tell application "System Events"
tell process "System Preferences"
set toggleBluetooth to the checkbox "Show Bluetooth in menu bar" of the window "Bluetooth"
click toggleBluetooth
end tell
end tell
tell application "System Preferences"
quit
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment