Created
August 4, 2012 19:35
-
-
Save deviantintegral/3259508 to your computer and use it in GitHub Desktop.
Pause and Resume Growl Notifications
This file contains 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
(** | |
* Pause and resume Growl. Use in a launcher like Quicksilver or Alfred to | |
* pause and resume Growl when the menu bar icon is disabled. | |
* | |
* Author: Andrew Berry, [email protected] | |
*) | |
tell application "Growl" | |
register as application "Growl pause/resume" all notifications {"Growl paused", "Growl resumed"} default notifications {"Growl paused", "Growl resumed"} icon of application "Growl" | |
if is paused then | |
resume | |
notify with name "Growl resumed" title "Growl resumed" description "Growl notifications resumed" application name "Growl pause/resume" | |
else | |
notify with name "Growl paused" title "Growl paused" description "Growl notifications paused" application name "Growl pause/resume" | |
pause | |
end if | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks @deviantintegra. Worked like a charm!