Created
October 10, 2018 22:31
-
-
Save tsu-nera/2c078f12925bfcef331d9c0d0b65e22c to your computer and use it in GitHub Desktop.
Slack Send Status Home
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
#!/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