Skip to content

Instantly share code, notes, and snippets.

@andreyfedoseev
Created February 10, 2012 14:42
Show Gist options
  • Save andreyfedoseev/1789966 to your computer and use it in GitHub Desktop.
Save andreyfedoseev/1789966 to your computer and use it in GitHub Desktop.
AppleScript to set Away status in Skype and Adium (for Alfred)
tell application "Adium" to go away
tell application "Skype"
send command "SET USERSTATUS DND" script name "Alfred"
end tell
tell application "Adium" to go offline
tell application "Skype"
send command "SET USERSTATUS OFFLINE" script name "Alfred"
end tell
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