Skip to content

Instantly share code, notes, and snippets.

@jbalogh
Created October 13, 2010 22:00
Show Gist options
  • Save jbalogh/625021 to your computer and use it in GitHub Desktop.
Save jbalogh/625021 to your computer and use it in GitHub Desktop.
# pip install growl-py
try:
import Growl
i = Growl.Image.imageFromPath('media/img/amo2009/logo-mozilla.gif')
g = Growl.GrowlNotifier(applicationName='z', applicationIcon=i,
notifications=['Info'])
g.register()
g.notify('Info', 'ZAMBONI', None)
except Exception, e:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment