Created
May 21, 2011 03:36
-
-
Save nclark/984211 to your computer and use it in GitHub Desktop.
applescripts for pomodoro.app
This file contains hidden or 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 "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 |
This file contains hidden or 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 "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 |
This file contains hidden or 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 "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 |
This file contains hidden or 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 "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 |
This file contains hidden or 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 "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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Awesome! I'll add "Messages" status changes in my fork. Is there any way to on/off notifications in Mountain Lion's Notification Center?