Skip to content

Instantly share code, notes, and snippets.

@nclark
Created May 21, 2011 03:36
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nclark/984211 to your computer and use it in GitHub Desktop.
Save nclark/984211 to your computer and use it in GitHub Desktop.
applescripts for pomodoro.app
tell application "Finder"
if (name of every application process) contains "Skype" then
tell application "Skype"
send command "SET USERSTATUS ONLINE" script name "pomodoro"
send command "SET PROFILE MOOD_TEXT " script name "pomodoro"
end tell
end if
end tell
tell application "Twitter" to activate
tell application "Notify" to activate
tell application "Finder"
if (name of every application process) contains "Skype" then
tell application "Skype"
send command "SET PROFILE MOOD_TEXT Available in $time minutes" script name "pomodoro"
end tell
end if
end tell
tell application "Finder"
if (name of every application process) contains "Skype" then
tell application "Skype"
send command "SET USERSTATUS ONLINE" script name "pomodoro"
send command "SET PROFILE MOOD_TEXT " script name "pomodoro"
end tell
end if
end tell
tell application "Finder"
if (name of every application process) contains "Skype" then
tell application "Skype"
send command "SET USERSTATUS ONLINE" script name "pomodoro"
send command "SET PROFILE MOOD_TEXT " script name "pomodoro"
end tell
end if
end tell
tell application "Twitter" to activate
tell application "Notify" to activate
tell application "Finder"
if (name of every application process) contains "Skype" then
tell application "Skype"
send command "SET USERSTATUS DND" script name "pomodoro"
send command "SET PROFILE MOOD_TEXT Available in 25 minutes" script name "pomodoro"
end tell
tell application "System Events"
set visible of process "Skype" to false
end tell
end if
end tell
tell application "Twitter" to quit
tell application "Notify" to quit
@vrybas
Copy link

vrybas commented Aug 15, 2012

Awesome! I'll add "Messages" status changes in my fork. Is there any way to on/off notifications in Mountain Lion's Notification Center?

@vrybas
Copy link

vrybas commented Aug 16, 2012

Found the solution for Notification Center
https://gist.github.com/3355255#file_end.scpt

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment