|
growlNotify.sh
Download file #!/bin/sh # thunderbird_wrapper.sh # v1.0 # David LaPorte # 09/23/05 SUBJECT="$1" SENDER="$2" APP="Thunderbird" # Location of growlnotify (located in Growl distribution) # You will need to move it from the DMG to a local path GROWLNOTIFY=/usr/local/bin/growlnotify $GROWLNOTIFY -a "$APP" -t "Subject: $SUBJECT" -m "From: $SENDER" |