diff options
| author | Teddy Wing | 2015-05-31 17:58:58 -0400 |
|---|---|---|
| committer | Teddy Wing | 2015-05-31 17:58:58 -0400 |
| commit | 4c57303e4653bc332f5506440d40fc4df33b2420 (patch) | |
| tree | 0c9e720fab8dab3aa2f21163a449cef10b79aac2 /hipchat-stfu.pl | |
| parent | c7786e0eb9f90def2b0ef3d4652a2e0e5055b734 (diff) | |
| download | irssi-hipchat-stfu-4c57303e4653bc332f5506440d40fc4df33b2420.tar.bz2 | |
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.
Diffstat (limited to 'hipchat-stfu.pl')
| -rw-r--r-- | hipchat-stfu.pl | 12 |
1 files changed, 12 insertions, 0 deletions
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', +); |
