Created
May 29, 2016 08:08
-
-
Save mrbuk/7f93e0c9d9c58e5fe03101b72f7c8985 to your computer and use it in GitHub Desktop.
Toggle natural scrolling on OSX
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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