forked from irssi/scripts.irssi.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scripts.yaml
5514 lines (5514 loc) · 164 KB
/
scripts.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
-
authors: bw1
commands: 0x0st
contact: bw1@aol.at
description: 'upload file to https://0x0.st/'
filename: 0x0st.pl
license: ISC
modified: '2020-04-12 17:56:59'
modules: 'HTTP::Request::Common LWP::UserAgent'
name: 0x0st
url: https://scripts.irssi.org/
version: '0.03'
-
authors: 'Patrik Akerfeldt'
contact: patrik.akerfeldt@gmail.com
description: 'Dont like to take decisions? Have the 8-ball do it for you instead.'
filename: 8-ball.pl
license: GPL
modified: '2019-07-16 23:37:33'
name: 8-ball
version: '0.23'
-
authors: 'Dani Soufi (compengi)'
commands: 'audacious mocp'
contact: 'IRC: Freenode network, #ubuntu-lb'
description: 'Controls Audacious2 and MOCP from Irssi'
filename: Cirssi.pl
license: 'GNU General Public License'
modified: '2019-01-20 23:16:01'
name: 'Consolidate Irssi Player'
url: http://git.peersnode.net/
version: '2.2'
-
authors: 'Doncho N. Gunchev'
commands: id
contact: mr_700@yahoo.com
description: "Automaticaly \x02/msg ident NS yourpassword\x02 when you connect or services come back from death"
filename: UNIBG-autoident.pl
license: 'Public Domain'
modified: '2018-09-10 18:52:09'
name: UNIBG-autoident
url: http://not.available.yet/
version: '0.2'
-
authors: 'Tamas SZERB'
contact: toma@rulez.org
description: 'This script strips the hungarian accents.'
filename: accent.pl
license: GPL
modified: '2015-01-26 22:59:40'
name: accent
version: '1.34'
-
authors: ilbelkyr
contact: 'ilbelkyr on freenode, ilbelkyr@shalture.org'
description: 'Display account identification status changes using CAP account-notify'
filename: account-notify.pl
license: 'CC0 1.0 <https://creativecommons.org/publicdomain/zero/1.0/legalcode>'
modified: '2017-11-05 00:04:25'
name: account-notify
version: '1.01'
-
authors: "Chris 'raz' Hoogenboezem"
contact: chrish@carrier6.com
description: 'Instead of displaying semi-raw data, a /whois now gives a tidy accountname on Asuka/lain servers (if applicable).'
filename: accountname.pl
license: 'Feel free to alter anything conform your own liking.'
modified: '2008-05-17 17:39:09'
name: accountname
version: '1.0'
-
authors: 'Rocco Caputo'
commands: 'ack ack_add ack_del ack_sorts ack_spoke'
contact: rcaputo@cpan.org
description: 'Jump to the next active window, with tiebreakers.'
filename: ack.pl
license: Perl
modified: '2012-03-07 13:20:23'
name: ack
url: '(none yet)'
version: '0.0000'
-
authors: c0ffee
commands: act
contact: c0ffee@penguin-breeder.org
description: 'Reset window activity status. defines command /act'
filename: act.pl
license: 'Public Domain'
modified: '2016-05-01 21:05:08'
name: 'Reset window activity status'
url: http://www.penguin-breeder.org/irssi/
version: '0.15'
-
authors: 'Daniel Kalør (Xnybre)'
contact: irssi@kalor.dk
description: 'Print window activity to a fifo'
filename: act_fifo.pl
license: GPLv2
modified: '2014-10-17 18:30:46'
name: act_fifo
version: '1.1'
-
authors: 'Geert Hauwaerts'
contact: geert@hauwaerts.be
description: 'This script shows incoming notices into the active channel.'
filename: active_notice.pl
license: 'GNU General Public License'
modified: '2016-01-20 22:59:49'
name: active_notice.pl
url: https://github.com/GeertHauwaerts/irssi-scripts/blob/master/src/active_notice.pl
version: 18.01.01
-
authors: 'Geert Hauwaerts'
contact: geert@irssi.org
description: 'This script will display notify messages into the active window or broadcast it so all the windows.'
filename: active_notify.pl
license: 'GNU General Public License'
modified: '2003-09-17 23:00:11'
name: active_notify.pl
url: http://irssi.hauwaerts.be/active_notify.pl
version: '0.07'
-
authors: 'Antti Vähäkotamäki'
description: 'Maintains a representation of window activity status in a file'
filename: activity_file.pl
license: 'GNU General Public License'
modified: '2006-07-19 23:59:00'
name: activity_file
version: '1.00'
-
authors: Nei
commands: awl
contact: 'Nei @ anti@conference.jabber.teamidiot.de'
description: 'Adds a permanent advanced window list on the right or in a status bar.'
filename: adv_windowlist.pl
license: 'GNU GPLv2 or later'
modified: '2020-05-06 18:34:49'
modules: Text::CharWidth
name: adv_windowlist
url: http://anti.teamidiot.de/
version: '1.9'
-
authors: BC-bd
commands: ai
contact: bd@bc-bd.org
description: 'Puts people on ignore if they do a public away. See source for options.'
filename: ai.pl
license: 'GPL v2'
modified: '2014-10-17 18:30:46'
name: ai
url: https://bc-bd.org/svn/repos/irssi/trunk/
version: '0.3'
-
authors: "Maciek 'fahren' Freudenheim"
contact: fahren@bochnia.pl
description: 'Antyidler with random time'
filename: aidle.pl
license: 'GNU GPLv2 or later'
modified: '2014-10-17 18:30:46'
name: Antyidler
version: 1.1b
-
authors: ak
commands: akftp
contact: ocb23@freenet.removethis.de
description: 'Full configurable FTP advertiser for Irssi'
filename: akftp.pl
license: GPLv2
modified: '2008-05-17 17:39:09'
name: 'ak FTP-Ad'
url: http://members.tripod.com.br/archiv/
version: '1.4'
-
authors: "Christian 'mordeth' Weber"
commands: alamer
contact: mordeth\@mac.com
description: 'Converts towards lame speech'
filename: alame.pl
license: 'GPL v2'
modified: '2008-05-17 17:39:09'
name: alame
url: http://
version: 0.0.1
-
authors: "Tobias 'camel69' Wulff"
commands: amarok
contact: camel69(at)codeeye.de
description: 'Retrievs song infos and controls amaroK via dcop, optionally running on another computer via ssh'
filename: amarok_ssh.pl
license: 'Public Domain'
modified: '2014-10-17 18:30:46'
name: 'amaroK (via ssh)'
url: http://www.codeeye.de/irssi/
version: '1.0'
-
authors: 'Tuukka Lukkala'
contact: 'ragdim at mbnet dot fi'
description: 'Shows the song playing in amaroK in the active window (channel or query).'
filename: amaroknp.pl
license: GPL
modified: '2004-03-30 23:20:00'
name: amaroknp
url: http://koti.mbnet.fi/ragdim/amaroknp/
version: '0.10'
-
authors: 'Matt "f0rked" Sparks, Miklos Vajna'
commands: anames
contact: ms+irssi@quadpoint.org
description: 'a /names display with away nicks coloured'
filename: anames.pl
license: GPLv2
modified: '2018-01-05 13:56:55'
modules: Text::CharWidth
name: anames
url: http://quadpoint.org
version: '1.8'
-
authors: "Stefan 'tommie' Tomanek"
contact: stefan@pico.ruhr.de
description: 'Another auto away script'
filename: anotherway.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
name: anotherway
version: '2003010201'
-
authors: 'Grigori Goronzy'
contact: greg@chown.ath.cx
description: 'notices users who "plenk"'
filename: antiplenk.pl
license: BSD
modified: '2003-02-12 07:00:05'
name: antiplenk
url: http://chown.ath.cx/~greg/antiplenk/
version: 0.2.1
-
authors: 'Alexander Wirt'
contact: formorer@formorer.de
description: 'Shows your battery status in your Statusbar'
filename: apm.pl
license: 'GNU Public License'
modified: '2017-04-07 16:34:31'
name: apm
url: http://www.formorer.de/code
version: '0.4'
-
authors: 'Erkki Seppälä'
commands: armeija
contact: flux@inside.org
description: 'Ignores people bringin up boring/repeated subjects, plus replies.'
filename: armeija.pl
license: 'Public Domain'
modified: '2014-10-17 18:30:46'
name: 'Armeija Ignore'
url: http://xulfad.inside.org/~flux/software/irssi/
version: '0.4'
-
authors: 'Marcin Rozycki'
commands: 'ascii colkick colme colquit colsay coltopic'
contact: derwan@irssi.pl
description: 'Ascii-art bassed on figlet. Available commands: /ASCII, /COLSAY, /COLME, /COLTOPIC, /COLKICK, /COLQUIT.'
filename: ascii.pl
license: 'GNU GPL v2'
modified: '2002-06-21 17:17:53'
name: ascii-art
url: http://derwan.irssi.pl
version: 1.6.3
-
authors: 'Isaac Good (yitz_), Tom Feist (shabble)'
commands: spellcheck
contact: 'irssi@isaacgood.com, shabble+irssi@metavore.org'
description: 'ASpell spellchecking system for Irssi'
filename: aspell.pl
license: MIT
modified: '2016-10-06 17:55:58'
modules: Text::Aspell
name: aspell
version: 1.6.2
-
authors: 'Philipp Haegi'
commands: rotate_dict
contact: phaegi\@mimir.ch
description: 'Adds Text::Aspell suggestions to the list of completions'
filename: aspell_complete.pl
license: 'Public Domain'
modified: '2016-01-29 08:59:40'
modules: Text::Aspell
name: aspell_complete
note: ''
url: http://www.mimir.ch/ph/
version: '1.01'
-
authors: 'Mantas Mikulėnas'
contact: grawity@gmail.com
description: "Implements QuakeNet's CHALLENGE authentication"
filename: auth_quakenet.pl
license: 'WTFPL v2 <http://sam.zoy.org/wtfpl/>'
modified: '2014-12-18 08:54:54'
modules: 'Digest::HMAC Digest::SHA1'
name: auth_quakenet_challenge.pl
url: http://purl.net/net/grawity/irssi.html
version: '1.0'
-
authors: "Andreas 'ads' Scherbaum"
contact: ads@ufp.de
description: '/WHOIS all the users who send you a private message.'
filename: auto_whois.pl
license: GPL
modified: '2014-10-17 18:30:46'
name: auto_whois
url: http://irssi.org/
version: '0.9'
-
authors: 'Larry "Vizzie" Daffner'
commands: autoaway
contact: vizzie@airmail.net
description: 'Automatically goes away after defined inactivity'
filename: autoaway.pl
license: BSD
modified: '2018-12-02 10:47:21'
name: 'Automagic away setting'
url: http://www.flamingpackets.net/~vizzie/irssi/
version: '0.5'
-
authors: 'Peder Stray'
contact: peder@ninja.no
description: 'Auto add channels to channel list on join'
filename: autochannel.pl
license: GPL
modified: '2007-09-20 08:58:11'
name: autochannel
url: http://ninja.no/irssi/autochannel.pl
version: '1.2'
-
authors: 'Trevor "tee" Slocum'
commands: 'autocleared cleared'
contact: tslocum@gmail.com
description: 'Automatically clears pending input when you are away.'
filename: autoclearinput.pl
license: GPLv3
modified: '2019-02-11 10:29:06'
name: AutoClearInput
url: https://github.com/tslocum/irssi-scripts
version: 1.0.2
-
authors: 'Marcin Rozycki'
commands: autocycle
contact: derwan@irssi.pl
description: 'Auto regain ops in empty opless channels'
filename: autocycle.pl
license: 'GNU GPL v2'
modified: '2003-01-03 23:20:06'
name: autocycle
url: http://derwan.irssi.pl
version: '0.4'
-
authors: 'David Leadbeater'
contact: dgl@dgl.cx
description: 'does an autolimit for a channel'
filename: autolimit.pl
license: 'GNU GPLv2 or later'
modified: '2019-02-12 20:48:07'
name: autolimit
url: http://irssi.dgl.cx/
version: '1.01'
-
authors: Juerd
contact: '#####@juerd.nl'
description: "Change 'nick: ' prefix if the nick is changed while you're still editing."
filename: autonickprefix.pl
license: 'Any OSI'
modified: '2016-02-06 01:40:08'
name: autonickprefix
version: '1.00'
-
authors: 'Timo Sirainen & Jostein Kjønigsen'
commands: autoop
description: 'Simple auto-op script'
filename: autoop.pl
license: 'Public Domain'
modified: '2014-10-24 12:54:12'
name: autoop
version: '1.10'
-
authors: 'Toni Salomäki'
commands: 'autoop_add autoop_check autoop_del autoop_dynamic autoop_load autoop_save autoop_show'
contact: Toni@IRCNet
description: 'Auto-op script with dynamic address support and random delay'
filename: autoopper.pl
license: 'GNU GPLv2 or later'
modified: '2014-10-17 18:30:46'
name: autoopper
url: http://vinku.dyndns.org/irssi_scripts/
version: '3.7'
-
authors: "Timo 'cras' Sirainen, Bastian Blank"
contact: 'tss@iki.fi, waldi@debian.org'
description: 'Print realname of everyone who join to channels'
filename: autorealname.pl
license: 'GPLv2 or later'
modified: '2003-01-24 15:40:22'
name: 'auto realname'
url: http://irssi.org/
version: 0.8.6
-
authors: "Timo 'cras' Sirainen, Leszek Matok"
contact: lam@lac.pl
description: 'Automatically rejoin to channel after being kicked, after a (short) user-defined delay'
filename: autorejoin.pl
license: GPLv2
modified: '2017-09-26 02:40:01'
name: autorejoin
version: 1.1.0
-
authors: "Paul 'laaama' Raade"
contact: paul\@raade.org
description: 'Kickbans or knockouts people who use autorejoin on kick.'
filename: autorejoinpunish.pl
license: BSD
modified: '2002-05-02 22:04:48'
name: 'Autorejoin punisher'
url: http://www.raade.org/~paul/irssi/scripts/
version: '0.3'
-
authors: 'Terry Lewis'
commands: 'start stop'
contact: terry@kryogenic.co.uk
description: 'This script Reminds people to do stuff! :)'
filename: autoreminder.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
name: 'Auto Reminder'
version: '0.01'
-
authors: 'Jari Matilainen, original script by nightfrog'
contact: 'vague!#irssi@freenode on irc'
description: 'Autorun scripts/symlinks created in the scripts/autorun directory'
filename: autorun_scripts.pl
license: GPLv2
modified: '2016-04-18 15:11:40'
modules: File::ChangeNotify
name: autorun_scripts
version: '0.1'
-
authors: Juerd
commands: autostuff
contact: '#####@juerd.nl'
description: 'Save current servers, channels and windows for autoconnect and autojoin'
filename: autostuff.pl
license: 'Public Domain'
modified: '2010-10-24 14:35:00'
name: autostuff
url: http://juerd.nl/site.plp/irssi
version: '0.02'
-
authors: "Christian 'mordeth' Weber"
contact: chris@mac.ruhr.de
description: 'Auto-CTCP Verison on every joining nick'
filename: autoversion.pl
license: GPLv2
modified: '2002-08-21 00:00:00'
name: autoversion
url: ''
version: 0.0.1
-
authors: aluser
commands: autovoice
description: autovoice
filename: autovoice.pl
license: GPL
modified: '2019-01-14 16:25:50'
name: autovoice
version: '0.06'
-
authors: Nei
contact: 'Nei @ anti@conference.jabber.teamidiot.de'
description: 'Periodically sends /who on configured channels to update away state.'
filename: autowho.pl
license: ISC
modified: '2016-04-26 23:37:32'
name: autowho
url: http://anti.teamidiot.de/
version: '0.1'
-
authors: "Timo 'cras' Sirainen"
contact: tss@iki.fi
description: '/WHOIS all the users who send you a private message.'
filename: autowhois.pl
license: 'Public Domain'
modified: '2014-10-17 18:30:46'
name: autowhois
url: http://irssi.org/
version: '1.1'
-
authors: 'Janne Mikola'
contact: janne@mikola.info
description: '/WHOIS anyone querying you automatically.'
filename: autowhois_simple.pl
license: GPL
modified: '2014-10-17 18:30:46'
name: autowhois_simple
url: http://www.mikola.info
version: '0.1'
-
authors: 'Bitt Faulk'
contact: lxsfx3h02@sneakemail.com
description: 'Automatically wraps long sent messages into multiple shorter sent messages'
filename: autowrap.pl
license: BSD
modified: '2008-05-25 14:51:58'
name: autowrap
url: none
version: '2007031900'
-
authors: 'Jean-Yves Lefort, Larry "Vizzie" Daffner, Kees Cook'
contact: 'jylefort@brutele.be, vizzie@airmail.net, kc@outflux.net'
description: 'Away with reason, unaway, and autoaway'
filename: away.pl
license: BSD
modified: '2014-10-17 18:30:46'
name: away
version: '0.23'
-
authors: "Oskari 'Okko' Ojala"
contact: sorter.irssi-scripts@okko.net
description: 'Write /away information to a file to be used on web pages'
filename: away2web.pl
license: BSD
modified: '2014-10-17 18:30:46'
name: away2web
version: '2003100201'
-
authors: 'Geert Hauwaerts'
contact: geert@hauwaerts.be
description: 'This script will notice your away message in response to a hilight.'
filename: away_hilight_notice.pl
license: 'GNU General Public License'
modified: '2015-06-25 22:51:33'
name: away_hilight_notice.pl
url: https://github.com/GeertHauwaerts/irssi-scripts/blob/master/src/away_hilight_notice.pl
version: 15.01.01
-
authors: 'Wouter Coekaerts, Koenraad Heijlen'
contact: 'vipie@ulyssis.org, wouter@coekaerts.be'
description: 'A verbose away script, displays a verbose away/back message in the channels you are in. BUT it can limit the channels (not spamming every channel!)'
filename: away_verbose.pl
license: 'GNU GPL version 2'
modified: '2004-01-01 00:00:00'
name: away_verbose
url: http://vipie.studentenweb.org/dev/irssi/
version: 0.0.7
-
authors: 'Simon Shine'
contact: http://shine.eu.org/
description: 'Provides a menubar item with away message'
filename: awaybar.pl
license: 'Public domain'
modified: '2017-04-07 16:34:31'
name: awaybar
version: 0.1.1
-
authors: 'Marcin Rozycki'
contact: derwan@irssi.pl
description: 'Displays in statusbar number of messages in awaylog'
filename: awaylogcnt.pl
license: 'GNU GPL v2'
modified: '2017-04-07 16:34:31'
name: awalogcnt
url: http://derwan.irssi.pl
version: '0.2'
-
authors: BCOW
contact: anttip@n0-life.com
description: 'Sets nick away when client discconects from the irssi-proxy. If away gathers messages targeted to nick and forwards them to an email address.'
filename: awayproxy.pl
license: GPLv2
modified: '2016-03-21 23:29:10'
name: awayproxy
url: http://www.n0-life.com
version: 0.2e
-
authors: "Jan 'fissie' Sembera"
contact: fis@ji.cz
description: 'Configurable badword kickbanning script'
filename: badword.pl
license: 'GPL v2 and any later'
modified: '2008-05-17 17:39:09'
name: badword
url: http://fis.bofh.cz/devel/irssi/
version: 0.0.3
-
authors: "Maciek 'fahren' Freudenheim"
contact: fahren@bochnia.pl
description: '/BAN [channel] [-normal|-host|-user|-domain|-crap|-ip|-class -before|-after "cmd" nick|mask] ... - bans several nicks/masks on channel, removes any conflicting bans before banning'
filename: ban.pl
license: 'GNU GPLv2 or later'
modified: '2002-11-19 18:11:09'
name: ban
version: 1.4d
-
authors: 'Valentin Batz, Nico R. Wohlgemuth'
commands: banaffects
contact: 'senneth@irssi.org, nico@lifeisabug.com'
description: 'Shows affected nicks by a ban on a new ban and defends yourself because IRC is serious.'
filename: banaffects.pl
modified: '2012-10-27 01:57:13'
name: banaffects_sd
url: http://nico.lifeisabug.com/irssi/scripts/
version: '1.2'
-
authors: 'Riku Voipio'
contact: riku.voipio@iki.fi
description: 'shows bandwidth usage in statusbar'
filename: bandwidth.pl
license: GPLv2
modified: '2017-04-07 16:34:31'
name: bandwidth
url: http://nchip.ukkosenjyly.mine.nu/irssiscripts/
version: '1.0'
-
authors: 'Nathan Handler, Joseph Price'
commands: bansearch
contact: 'nathan.handler@gmail.com, pricechild@ubuntu.com'
description: 'Searches for bans, quiets, and channel modes affecting a user'
filename: bansearch.pl
license: GPLv3+
modified: '2020-08-24 19:15:24'
name: bansearch
version: '1.3'
-
authors: "David O'Rourke"
commands: bantime
contact: 'phyber [at] #irssi'
description: 'Print time when ban was set in a nicer way. eg. 23m, 40s ago.'
filename: bantime.pl
license: GPLv2
modified: '2015-01-09 19:54:31'
name: bantime
version: '1.03'
-
authors: 'Jean-Yves Lefort'
contact: 'jylefort\@brutele.be, decadix on IRCNet'
description: 'Replaces your terminal bell by a command specified via /set; adds a beep_when_not_away setting'
filename: beep.pl
license: BSD
modified: '2014-10-17 20:34:00'
name: beep
url: http://void.adminz.be/irssi.shtml
version: '1.01'
-
authors: 'Georg Lukas'
contact: georg@op-co.de
description: 'runs arbitrary command instead of system beep, includes flood protection'
filename: beep_beep.pl
license: 'Public Domain'
modified: '2014-10-17 20:34:00'
name: beep_beep
url: http://op-co.de/irssi/
version: '0.10'
-
authors: "Simon 'corecode' Schubert"
contact: corecode@corecode.ath.cx
description: 'Only beep when you are away'
filename: beepaway.pl
license: BSD
modified: '2018-12-23 22:07:33'
name: beepaway
version: '2018122301'
-
authors: Nei
commands: key_insert_before_space
contact: 'Nei @ anti@conference.jabber.teamidiot.de'
description: 'Rebind certain keys so that they are inserted before the space'
filename: beforespace.pl
license: ISC
modified: '2016-04-26 23:42:54'
name: beforespace
url: http://anti.teamidiot.de/
version: '0.1'
-
authors: "Stefan 'tommie' Tomanek"
commands: bestoiber
contact: stefan@pico.ruhr.de
description: 'stoibers your messages'
filename: bestoiber.pl
license: GPLv2
modified: '2008-05-17 17:39:09'
name: BeStoiber
url: ''
version: '2003020801'
-
authors: 'Liam Hopkins'
commands: betterlist
contact: we.hopkins@gmail.com
description: '/betterlist <perl-regexp>'
filename: betterlist.pl
license: GPL
modified: '2019-09-08 18:01:35'
name: betterlist
version: '2.2'
-
authors: 'Carl Fischer'
commands: 'binary unbinary'
contact: carl.fischer@netcourrier.com
description: 'adds /binary command that converts what you type into 2-base string representation, also decodes other peoples binary automatically'
filename: binary.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
name: binary
version: '1.2'
-
authors: 'Aaron Toponce, Knut Auvor Grythe'
contact: 'aaron.toponce@gmail.com, irssi@auvor.no'
description: 'Prints the timestamp in binary format'
filename: binary_time.pl
license: GPL
modified: '2008-06-16 10:12:35'
name: binary_time
version: '20060826'
-
authors: 'Tijmen "timing" Ruizendaal'
commands: blist
contact: tijmen.ruizendaal@gmail.com
description: "/blist <all|online|offline|away|word> <word>,\tgreps <word> from blist for bitlbee"
filename: bitlbee_blist.pl
license: GPLv2
modified: '2013-12-09 23:09:23'
name: bitlbee_blist
url: http://the-timing.nl/stuff/irssi-bitlbee
version: '0.5'
-
authors: 'Ævar Arnfjörð Bjarmason'
contact: avarab@gmail.com
description: 'Hide your REGISTER and IDENTIFY password lines in &bitlbee from screen & logs '
filename: bitlbee_hide_password.pl
license: 'Public Domain'
modified: '2016-03-15 17:52:13'
name: bitlbee_hide_password.pl
url: 'http://scripts.irssi.org & https://github.com/avar/dotfiles/blob/master/.irssi/scripts/bitlbee_hide_password.pl'
version: '1.0'
-
authors: 'Tijmen "timing" Ruizendaal'
contact: tijmen.ruizendaal@gmail.com
description: '1. Adds an item to the status bar wich shows [joined: <nicks>] when someone is joining &bitlbee. 2. Shows join messages in the query. (For bitlbee v3.0+)'
filename: bitlbee_join_notice.pl
license: GPLv2
modified: '2017-04-07 16:34:31'
name: BitlBee_join_notice
url: http://the-timing.nl/stuff/irssi-bitlbee
version: '1.3'
-
authors: 'Tijmen "timing" Ruizendaal'
contact: tijmen.ruizendaal@gmail.com
description: 'Shows an IM nickchange in an Irssi way. (in a query and in the bitlbee channel). (For bitlbee 3.0+)'
filename: bitlbee_nick_change.pl
license: GPLv2
modified: '2010-07-28 00:00:00'
name: BitlBee_nick_change
url: http://the-timing.nl/stuff/irssi-bitlbee
version: '1.3'
-
authors: 'Tijmen "timing" Ruizendaal & Wilmer van der Gaast'
contact: tijmen.ruizendaal@gmail.com
description: 'Intelligent Tab-completion for BitlBee commands.'
filename: bitlbee_tab_completion.pl
license: GPLv2
modified: '2009-08-11 00:00:00'
name: BitlBee_tab_completion
url: http://the-timing.nl/stuff/irssi-bitlbee
version: '1.3'
-
authors: 'Tijmen "timing" Ruizendaal'
contact: tijmen.ruizendaal@gmail.com
description: "Replace Irssi's timestamps with those sent by BitlBee"
filename: bitlbee_timestamp.pl
license: GPLv2
modified: '2019-03-15 11:01:56'
modules: DateTime
name: bitlbee_timestamp
url: http://the-timing.nl/stuff/irssi-bitlbee
version: '0.6'
-
authors: 'Tijmen "timing" Ruizendaal, Matt "f0rked" Sparks'
commands: db_typing
contact: 'tijmen.ruizendaal@gmail.com, root@f0rked.com'
description: "1. Adds an item to the status bar wich shows [typing] when someone is typing a message on the supported IM-networks\t2. Sends typing notices to the supported IM networks (the other way arround). (For bitlbee 3.0+)"
filename: bitlbee_typing_notice.pl
license: GPLv2
modified: '2017-11-17 16:21:26'
name: BitlBee_typing_notice
url: 'http://the-timing.nl/stuff/irssi-bitlbee, http://f0rked.com'
version: 1.7.3
-
authors: iMil,Skid,Foxmask,reiffert
commands: 'bconf blow blowhelp delkey perm setkey showkey'
contact: imil@gcu-squad.org,blowjob@reifferscheid.org,#blowtest@freenode
description: 'Crypt IRC communication with blowfish encryption. Supports public #channels, !channels, +channel, querys and dcc chat. Roadmap for Version 1.0.0 is to get some feedback and cleanup. Join #blowtest on freenode (irc.debian.org) to get latest stuff available. Note to users upgrading from versions prior to 0.8.5: The blowjob.keys format has changed.'
filename: blowjob.pl
license: 'GNU GPL'
modified: '2015-04-22 22:27:27'
modules: 'Crypt::Blowfish Crypt::CBC'
name: blowjob
url: http://ftp.gcu-squad.org/misc/
version: 0.9.0
-
authors: 'Daniel K. Gebhart, Marcus Rückert'
commands: bmi
contact: 'dkg@con-fuse.org, darix@irssi.org'
description: 'a simple body mass index calculator for depression ;)'
filename: bmi.pl
license: GPLv2
modified: '2008-05-17 17:39:09'
name: 'BMI Calculator'
url: http://dkg.con-fuse.org/irssi/scripts/
version: '2002121801'
-
authors: bw1
commands: boinc
contact: bw1@aol.at
description: 'interface to boinc'
filename: boinc.pl
license: gpl
modified: '2019-05-29 16:14:16'
modules: YAML
name: boinc
url: https://scripts.irssi.org/
version: '0.1'
-
authors: Juerd
contact: juerd@juerd.nl
description: 'Saves the buffer for /upgrade, so that no information is lost'
filename: buf.pl
license: 'Public Domain'
modified: '2018-03-29 13:14:39'
name: 'Scroll buffer restorer'
url: http://juerd.nl/irssi/
version: '3.00'
-
authors: 'Pablo Martín Báez Echevarría'
commands: buffer
contact: pab_24n@outlook.com
description: 'pastes a buffer into a channel or query window line by line with a specific delay between lines'
filename: buffer.pl
license: 'Public Domain'
modified: '2016-06-28 00:45:27'
name: buffer
url: http://reirssi.wordpress.com
version: '1.1'
-
authors: Juerd
commands: calc
contact: juerd@juerd.nl
description: 'Simple /calc mechanism'
filename: calc.pl
license: 'Public Domain'
modified: '2002-03-19 11:00:00'
name: Calculator
url: http://juerd.nl/irssi/
version: '1.10'
-
authors: 'Daniel "dubkat" Reidy'
contact: 'dubkat@dubkat.org (www.dubkat.org)'
description: "Reformats CallerID (+g) Messages\n (Also known as Server-Side Ignore)\n on Hybrid & Ratbox IRCDs (EFnet)\n to be Easier on the Eyes"
filename: callerid.pl
license: GPL
modified: '2008-05-17 17:39:11'
name: callerid
url: http://scripts.irssi.org/
version: '1.0'
-
authors: 'Mike Quin, Krytarik Raido'
contact: 'mike@elite.uk.com, krytarik@tuxgarage.com'
description: 'Print account and realname information on joins where extended-join is available'
filename: cap-extjoin.pl
license: GPLv2
modified: '2017-12-12 14:37:51'
name: cap-extjoin
url: https://github.com/mquin/irssi-scripts
version: 0.9.0
-
authors: dwfreed
contact: dwfreed@mtu.edu
description: 'Prints caps; derived from cap_sasl.pl by Michael Tharp (gxti), Jilles Tjoelker (jilles), and Mantas Mikulėnas (grawity)'
filename: cap.pl
license: GPLv2
modified: '2016-09-13 03:32:53'
name: cap
url: 'none yet'
version: '1.0'
-
authors: 'Michael Tharp (gxti), Jilles Tjoelker (jilles), Mantas Mikulėnas (grawity)'
contact: grawity@gmail.com
description: 'Implements SASL authentication and enables CAP "multi-prefix"'
filename: cap_sasl.pl
license: GPLv2
modified: '2015-12-04 19:11:05'
modules: Crypt::PK::ECC
name: cap_sasl.pl
url: http://ircv3.atheme.org/extensions/sasl-3.1
version: '1.11'
-
authors: Nei
description: 'Disconnect from server if SASL authentication fails.'
filename: cap_sasl_fail.pl
license: 'GNU GPLv2 or later'
modified: '2017-01-16 16:43:50'
name: cap_sasl_fail
version: '2.1'
-
authors: 'Joost "Garion" Vunderink'
contact: joost@carnique.nl
description: 'Staturbar item which indicates how many new messages you have in your centericq'
filename: centericq.pl
license: 'Public Domain'
modified: '2017-04-07 16:34:31'
name: centericq
url: 'http://irssi.org, http://scripts.irssi.org'
version: 1.0.0
-
authors: 'Pieter-Bas IJdens'
commands: cgrep
contact: irssi-scripts@nospam.mi4.org.uk
description: 'Lists users on the channel matching the specified regexp'
filename: cgrep.pl
license: 'GPLv2 or later'
modified: '2016-09-20 14:26:40'
name: cgrep
url: http://pieter-bas.ijdens.com/irssi/
version: 1.0.0
-
authors: BC-bd
commands: 'chanact_window_alias chanact_window_unalias'
contact: bd@bc-bd.org
description: 'Adds new powerful and customizable [Act: ...] item (chanelnames,modes,alias). Lets you give alias characters to windows so that you can select those with meta-<char>'
filename: chanact.pl
license: 'GNU GPLv2 or later'
modified: '2017-02-13 17:21:07'
name: chanact
url: http://bc-bd.org/blog/irssi/
version: 0.6.0
-
authors: "Joern 'Wulf' Heissler"
contact: wulf@wulf.eu.org
description: 'Notifies the user when some channel limit is reached'
filename: chanfull.pl
license: GPLv2
modified: '2008-05-17 17:39:09'
name: chanfull
url: ''
version: '2003011700'
-
authors: "Uwe 'duden' Dudenhoeffer"
contact: script@duden.eu.org
description: 'Notify if Channellimit is reached'
filename: chanfull_duden.pl
license: GPLv2
modified: '2003-02-08 18:08:54'
name: chanfull
url: ''
version: '0.1'
-
authors: "Bjoern 'fuchs' Krombholz"
contact: bjkro@gmx.de
description: 'Log maximum number of people ever been in a channel'
filename: chanpeak.pl
license: 'Public Domain'
modified: '2002-06-02 17:00:00'
name: chanpeak
version: 0.2.2
-
authors: "Stefan 'tommie' Tomanek, bw1"
commands: chansearch
contact: bw1@aol.at
description: 'searches for specific channels'
filename: chansearch.pl
license: GPLv2
modified: '2019-07-31 11:09:49'
modules: 'HTML::Entities LWP::UserAgent'
name: ChanSearch
url: http://scripts.irssi.org/
version: '2.1'
-
authors: "Timo 'cras' Sirainen"
commands: chanshare
contact: tss@iki.fi
description: '/CHANSHARE - display people who are in more than one channel with you'
filename: chanshare.pl
license: 'Public Domain'
modified: '2019-02-13 21:13:53'
name: 'chan share'
url: http://irssi.org/
version: '0.4'
-
authors: 'Peder Stray'
commands: chansort
contact: peder@ninja.no
description: 'Sort all channel and query windows'
filename: chansort.pl
license: GPL