From 4c57303e4653bc332f5506440d40fc4df33b2420 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 31 May 2015 17:58:58 -0400 Subject: Add base irssi script New file containing the minimum defaults needed for an irssi script, copied from http://juerd.nl/site.plp/irssiscripttut. Sets up `$VERSION` & `%IRSSI` variables. --- hipchat-stfu.pl | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 hipchat-stfu.pl (limited to 'hipchat-stfu.pl') diff --git a/hipchat-stfu.pl b/hipchat-stfu.pl new file mode 100644 index 0000000..adee2f4 --- /dev/null +++ b/hipchat-stfu.pl @@ -0,0 +1,12 @@ +use strict; +use vars qw($VERSION %IRSSI); + +use Irssi; +$VERSION = '1.00'; +%IRSSI = ( + authors => 'Teddy Wing', + contact => 'irssi@teddywing.com', + name => 'HipChat STFU', + description => 'Silences annoying messages originating from HipChat.', + license => 'MIT', +); -- cgit v1.2.3