Created
November 9, 2011 14:15
-
-
Save mattd/1351546 to your computer and use it in GitHub Desktop.
An irssi growler script. Get notification of nick mentions!
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
#!/bin/sh | |
(ssh [email protected] -p 1984 -o PermitLocalCommand=no \ | |
": > .irssi/fnotify ; tail -f .irssi/fnotify " | \ | |
while read heading message; do \ | |
growlnotify -s -t "${heading}" -m "${message}"; \ | |
#say "${heading} says, ${message}"; \ | |
done)& |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment