Skip to content

Instantly share code, notes, and snippets.

@ecarnevale
Created January 5, 2010 12:54
Show Gist options
  • Save ecarnevale/269359 to your computer and use it in GitHub Desktop.
Save ecarnevale/269359 to your computer and use it in GitHub Desktop.
simple scripts for a sane hacking
tell application "Mailplane"
set doNotDisturb to true
end tell
tell application "Skype"
send command "SET USERSTATUS DND" script name "PomodoroStart"
send command "SET SILENT_MODE ON" script name "PomodoroStart"
send command "SET PROFILE MOOD_TEXT In the middle of a Pomodoro, please DND" script name "PomodoroStart"
end tell
#
# tell application "iChat"
# set status to away
# end tell
#
# tell application "Adium"
# repeat with singleAccount in accounts
# set status of singleAccount to away
# set message of singleAccount to "In the middle of a Pomodoro"
# end repeat
# end tell
tell application "Mailplane"
set doNotDisturb to false
end tell
tell application "Skype"
send command "SET USERSTATUS ONLINE" script name "PomodoroStop"
send command "SET SILENT_MODE OFF" script name "PomodoroStop"
send command "SET PROFILE MOOD_TEXT No more swine flu" script name "PomodoroStop"
end tell
#
# tell application "iChat"
# set status to available
# end tell
#
# tell application "Adium"
# repeat with singleAccount in accounts
# set status of singleAccount to available
# set message of singleAccount to ""
# end repeat
# end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment