Skip to content

Instantly share code, notes, and snippets.

@makevoid
Created March 29, 2018 22:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save makevoid/dfe7accff096502c01ae350b206eecc4 to your computer and use it in GitHub Desktop.
Save makevoid/dfe7accff096502c01ae350b206eecc4 to your computer and use it in GitHub Desktop.
Fastscript applescripts
1 - alt1
2 - alt2
3 - alt3
4 - ±
# focus editor
tell application "Atom"
activate
end tell
# focus browser
tell application "Firefox"
# tell application "Google Chrome"
activate
end tell
# focus terminal
tell application "Terminal"
activate
end tell
# focus terminal
tell application "Terminal"
activate
end tell
# up arrow - enter (run last command)
tell application "System Events"
key code 126
key code 36
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment