up vote 0 down vote favorite
share [g+] share [fb]

Say I run the following script that includes growlnotify.

#! /bin/bash

# do something ...

echo 'I want growlnotify to say this' | \
growlnotify -a '[Some Application]' 'Growl Headline'; \

exit;

If the script is run from Terminal or chmod +x'd and double-clicked, then growlnotify works. If it is run from Quicksilver instead, then the script works, but it doesn't say anything to Growl.

How can it be made to work?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I suspect growlnotify is not in the PATH when run from quicksilver.

In a Terminal, run which growlnotify. It will tell you where the executable is located. (For me, it returns "/usr/local/bin/growlnotify"). Then, use the full path in your script, and it will always work, regardless of what is in the PATH environment variable.

link|improve this answer
Works like a charm! Thanks – trolle3000 Mar 4 '10 at 17:45
feedback

I've had to do the following to get reliable growl notifications

growlnotify -H localhost -m "message"
link|improve this answer
+1 for a cleaner way to send text to growlnotify – trolle3000 Mar 4 '10 at 17:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.