Skip to content

Instantly share code, notes, and snippets.

@hulbert
Created November 24, 2020 00:23
Show Gist options
  • Save hulbert/34796c878eeecfbf0db0b70923106dab to your computer and use it in GitHub Desktop.
Save hulbert/34796c878eeecfbf0db0b70923106dab to your computer and use it in GitHub Desktop.
AppleScript to reverse scroll direction
# 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