Skip to content

Instantly share code, notes, and snippets.

@nicolascormier
nicolascormier / gist:3295962
Created August 8, 2012 15:31
Irssi Message Notification
use strict;
use vars qw($VERSION %IRSSI);
use Irssi;
sub tmsg {
my ($server,$msg,$nick,$address,$target) = @_;
$msg =~ s/\'//g;
system("CHANGE/ME/UserNotifCenter.app/Contents/MacOS/UserNotifCenter '$nick' '$msg'");
}