Created
February 23, 2012 00:17
-
-
Save claco/1888612 to your computer and use it in GitHub Desktop.
Pomodoro on Alfred
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
on alfred_script(q) | |
tell application "Pomodoro" | |
if q is equal to "reset" then | |
reset | |
else if q is equal to "resume" then | |
resume | |
else if q is equal to "complete" then | |
force completion | |
else if q is equal to "external" then | |
external interrupt | |
else if q is equal to "internal" then | |
internal interrupt | |
else | |
start q duration 25 | |
end | |
end tell | |
end alfred_script |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment