Skip to content

Instantly share code, notes, and snippets.

@mrbuk
Created May 29, 2016 08:08
Show Gist options
  • Save mrbuk/7f93e0c9d9c58e5fe03101b72f7c8985 to your computer and use it in GitHub Desktop.
Save mrbuk/7f93e0c9d9c58e5fe03101b72f7c8985 to your computer and use it in GitHub Desktop.
Toggle natural scrolling on OSX
#!/bin/bash
osascript <<EOF
tell application "System Preferences"
set current pane to pane "com.apple.preference.trackpad"
end tell
tell application "System Events"
tell application process "System Preferences"
tell tab group 1 of window "Trackpad"
click radio button 2
click checkbox 1
end tell
end tell
end tell
tell application "System Preferences"
quit
end tell
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment