Skip to content

Instantly share code, notes, and snippets.

@tsu-nera
Created October 10, 2018 22:31
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 tsu-nera/2c078f12925bfcef331d9c0d0b65e22c to your computer and use it in GitHub Desktop.
Save tsu-nera/2c078f12925bfcef331d9c0d0b65e22c to your computer and use it in GitHub Desktop.
Slack Send Status Home
#!/usr/bin/osascript
# https://eastmanreference.com/complete-list-of-applescript-key-codes
tell application "Slack"
activate
tell application "System Events"
key code 19 using command down
delay 0.3
key code 16 using {command down, shift down}
delay 0.3
keystroke "home"
delay 0.3
key code 76
end tell
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment