Created
February 10, 2012 14:42
-
-
Save andreyfedoseev/1789966 to your computer and use it in GitHub Desktop.
AppleScript to set Away status in Skype and Adium (for Alfred)
This file contains 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
tell application "Adium" to go away | |
tell application "Skype" | |
send command "SET USERSTATUS DND" script name "Alfred" | |
end tell |
This file contains 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
tell application "Adium" to go offline | |
tell application "Skype" | |
send command "SET USERSTATUS OFFLINE" script name "Alfred" | |
end tell |
This file contains 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
tell application "Adium" to go available | |
tell application "Skype" | |
send command "SET USERSTATUS ONLINE" script name "Alfred" | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment