Created
August 29, 2017 06:39
-
-
Save horus/1490c2f401f54e81218d81f383849c94 to your computer and use it in GitHub Desktop.
Messages.app Screen Locker: Forget to lock your Mac? Text yourself!
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
| using terms from application "Messages" | |
| on message sent theMessage for theChat | |
| end message sent | |
| on message received theMessage from theBuddy for theChat | |
| if name of theBuddy contains "_phone_#_" and theMessage = "lock" then | |
| tell application "System Events" | |
| start current screen saver | |
| end tell | |
| end if | |
| end message received | |
| on chat room message received theMessage from theBuddy for theChat | |
| end chat room message received | |
| on active chat message received theMessage | |
| end active chat message received | |
| on addressed chat room message received theMessage from theBuddy for theChat | |
| end addressed chat room message received | |
| on addressed message received theMessage from theBuddy for theChat | |
| end addressed message received | |
| on received text invitation theText from theBuddy for theChat | |
| end received text invitation | |
| on received audio invitation theText from theBuddy for theChat | |
| end received audio invitation | |
| on received video invitation theText from theBuddy for theChat | |
| end received video invitation | |
| on received remote screen sharing invitation from theBuddy for theChat | |
| end received remote screen sharing invitation | |
| on received local screen sharing invitation from theBuddy for theChat | |
| end received local screen sharing invitation | |
| on received file transfer invitation theFileTransfer | |
| end received file transfer invitation | |
| on buddy authorization requested theRequest | |
| end buddy authorization requested | |
| on av chat started | |
| end av chat started | |
| on av chat ended | |
| end av chat ended | |
| on login finished for theService | |
| end login finished | |
| on logout finished for theService | |
| end logout finished | |
| on buddy became available theBuddy | |
| end buddy became available | |
| on buddy became unavailable theBuddy | |
| end buddy became unavailable | |
| on completed file transfer | |
| end completed file transfer | |
| end using terms from |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment