Skip to content

Instantly share code, notes, and snippets.

@schfkt
Forked from andreyfedoseev/away.applescript
Last active December 21, 2015 18:49
Show Gist options
  • Save schfkt/96673181b6066d7e894e to your computer and use it in GitHub Desktop.
Save schfkt/96673181b6066d7e894e to your computer and use it in GitHub Desktop.
AppleScript to set Away status in Skype and Adium (for Alfred)
on alfred_script(q)
tell application "Adium" to go away
tell application "Skype"
send command "SET USERSTATUS AWAY" script name "Alfred"
end tell
end alfred_script
on alfred_script(q)
tell application "Adium" to go offline
tell application "Skype"
send command "SET USERSTATUS OFFLINE" script name "Alfred"
end tell
end alfred_script
on alfred_script(q)
tell application "Adium" to go available
tell application "Skype"
send command "SET USERSTATUS ONLINE" script name "Alfred"
end tell
end alfred_script
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment