Created
November 24, 2020 00:23
-
-
Save hulbert/34796c878eeecfbf0db0b70923106dab to your computer and use it in GitHub Desktop.
AppleScript to reverse scroll direction
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
# Paste into Script Editor and export as an Application, then you can run via Spotlight (⌘ + Space) | |
tell application "System Preferences" | |
reveal anchor "trackpadTab" of pane id "com.apple.preference.trackpad" | |
end tell | |
tell application "System Events" to tell process "System Preferences" | |
click radio button 2 of tab group 1 of window 1 | |
click checkbox 1 of tab group 1 of window 1 | |
end tell | |
quit application "System Preferences" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment