Skip to content

Instantly share code, notes, and snippets.

@wbolster
Created December 1, 2014 12:51
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save wbolster/6076c11de4a4114f11a1 to your computer and use it in GitHub Desktop.
Save wbolster/6076c11de4a4114f11a1 to your computer and use it in GitHub Desktop.
AppleScript to toggle grayscale display (for Mac OSX 10.10 Yosemite)
tell application "System Preferences"
activate
set current pane to pane "Accessibility"
end tell
tell application "System Events"
tell process "System Preferences"
click checkbox "Use grayscale" of window 1
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