-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmyscripts.yaml
More file actions
1162 lines (1162 loc) · 20.6 KB
/
Copy pathmyscripts.yaml
File metadata and controls
1162 lines (1162 loc) · 20.6 KB
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
---
scripts:
0x0st:
filename: 0x0st
moduls:
- LWP::UserAgent
- HTTP::Request::Common
selfcheck: 1
8-ball:
filename: 8-ball
Cirssi:
filename: Cirssi
UNIBG-autoident:
filename: UNIBG-autoident
accent:
filename: accent
account-notify:
filename: account-notify
accountname:
filename: accountname
ack:
filename: ack
act:
filename: act
act_fifo:
filename: act_fifo
active_notice:
filename: active_notice
active_notify:
filename: active_notify
activity_file:
filename: activity_file
adv_windowlist:
filename: adv_windowlist
ai:
filename: ai
aidle:
filename: aidle
akftp:
filename: akftp
alame:
filename: alame
amarok_ssh:
filename: amarok_ssh
amaroknp:
filename: amaroknp
anames:
filename: anames
anotherway:
filename: anotherway
antiplenk:
filename: antiplenk
apm:
filename: apm
armeija:
filename: armeija
ascii:
filename: ascii
aspell:
filename: aspell
aspell_complete:
filename: aspell_complete
auth_quakenet:
filename: auth_quakenet
auto_whois:
filename: auto_whois
autoaway:
filename: autoaway
autochannel:
filename: autochannel
autoclearinput:
filename: autoclearinput
autocycle:
filename: autocycle
autolimit:
filename: autolimit
autonickprefix:
filename: autonickprefix
autoop:
filename: autoop
autoopper:
filename: autoopper
autorealname:
filename: autorealname
autorejoin:
filename: autorejoin
autorejoinpunish:
filename: autorejoinpunish
autoreminder:
filename: autoreminder
autorun_scripts:
filename: autorun_scripts
autostuff:
filename: autostuff
autoversion:
filename: autoversion
autovoice:
filename: autovoice
autowho:
filename: autowho
autowhois:
filename: autowhois
autowhois_simple:
filename: autowhois_simple
autowrap:
filename: autowrap
away:
filename: away
away2web:
filename: away2web
away_hilight_notice:
filename: away_hilight_notice
away_verbose:
filename: away_verbose
awaybar:
filename: awaybar
awaylogcnt:
filename: awaylogcnt
awayproxy:
filename: awayproxy
badword:
filename: badword
ban:
filename: ban
banaffects:
filename: banaffects
bandwidth:
filename: bandwidth
bansearch:
filename: bansearch
bantime:
filename: bantime
beep:
filename: beep
beep_beep:
filename: beep_beep
beepaway:
filename: beepaway
beforespace:
filename: beforespace
bestoiber:
filename: bestoiber
betterlist:
filename: betterlist
bgta-rp:
filename: bgta-rp
binary:
filename: binary
binary_time:
filename: binary_time
bitlbee_blist:
filename: bitlbee_blist
bitlbee_hide_password:
filename: bitlbee_hide_password
bitlbee_join_notice:
filename: bitlbee_join_notice
bitlbee_nick_change:
filename: bitlbee_nick_change
bitlbee_tab_completion:
filename: bitlbee_tab_completion
bitlbee_timestamp:
filename: bitlbee_timestamp
bitlbee_typing_notice:
filename: bitlbee_typing_notice
blowjob:
filename: blowjob
bmi:
filename: bmi
boinc:
filename: boinc
buf:
filename: buf
buffer:
filename: buffer
calc:
filename: calc
callerid:
filename: callerid
cap:
filename: cap
cap-extjoin:
filename: cap-extjoin
cap_sasl:
filename: cap_sasl
cap_sasl_fail:
filename: cap_sasl_fail
centericq:
filename: centericq
cgrep:
filename: cgrep
chanact:
filename: chanact
chanfull:
filename: chanfull
chanfull_duden:
filename: chanfull_duden
chanpeak:
filename: chanpeak
chansearch:
filename: chansearch
moduls:
- LWP::Protocol::https
- LWP::UserAgent
- HTML::Entities
selfcheck: 1
chanshare:
filename: chanshare
chansort:
filename: chansort
chansort_configurable:
filename: chansort_configurable
chansync:
filename: chansync
chops:
filename: chops
cleanpublic:
filename: cleanpublic
clearable:
filename: clearable
clipboard:
filename: clipboard
clones:
filename: clones
clones_scanner:
filename: clones_scanner
cmdind:
filename: cmdind
cmpchans:
filename: cmpchans
cmus:
filename: cmus
colon_emoji:
filename: colon_emoji
colorize_nicks:
filename: colorize_nicks
colorkick:
filename: colorkick
colormap:
filename: colormap
colorswap:
filename: colorswap
complete_at:
filename: complete_at
complete_lastspoke:
filename: complete_lastspoke
conceal:
filename: conceal
connectcmd:
filename: connectcmd
copy:
filename: copy
countdown:
filename: countdown
country:
filename: country
cp1250_kick:
filename: cp1250_kick
crapbuster:
filename: crapbuster
credstore:
filename: credstore
cron:
filename: cron
ctrlact:
filename: ctrlact
cubes:
filename: cubes
cwho:
filename: cwho
dancer_forwardfix:
filename: dancer_forwardfix
dau:
filename: dau
dcc_ip:
filename: dcc_ip
dccmove:
filename: dccmove
dccrelay:
filename: dccrelay
dccself:
filename: dccself
dccstat:
filename: dccstat
deadbeef:
filename: deadbeef
defaultchanmode:
filename: defaultchanmode
dejunk:
filename: dejunk
dejunk-v1.1:
filename: dejunk-v1.1
desktop-notify:
filename: desktop-notify
df:
filename: df
dice:
filename: dice
dice_concise:
filename: dice_concise
dictcomplete:
filename: dictcomplete
dim_nicks:
filename: dim_nicks
ding:
filename: ding
discord_unbridge:
filename: discord_unbridge
discord_unhilight:
filename: discord_unhilight
dispatch:
filename: dispatch
dns:
filename: dns
doc:
filename: doc
doublefilter:
filename: doublefilter
dr_who:
filename: dr_who
dss:
filename: dss
dtach_away:
filename: dtach_away
duckduckgo:
filename: duckduckgo
moduls:
- HTML::Entities
- LWP::UserAgent
- URI::Escape
selfcheck: 1
efnetorg:
filename: efnetorg
elist:
filename: elist
eliza:
filename: eliza
email_msgs:
filename: email_msgs
email_privmsgs:
filename: email_privmsgs
emaildb:
filename: emaildb
emo:
filename: emo
events:
filename: events
exec_clean:
filename: exec_clean
execcmd:
filename: execcmd
extaway:
filename: extaway
ez_color:
filename: ez_color
fakectcp:
filename: fakectcp
fcountry:
filename: fcountry
figlet:
filename: figlet
file:
filename: file
find:
filename: find
findbot:
filename: findbot
fleech:
filename: fleech
fnotify:
filename: fnotify
follow:
filename: follow
foo:
filename: foo
foreach_user:
filename: foreach_user
format_identify:
filename: format_identify
fortune:
filename: fortune
forward:
filename: forward
fpaste:
filename: fpaste
moduls: []
selfcheck: 1
friends:
filename: friends
friends_peder:
filename: friends_peder
friends_shasta:
filename: friends_shasta
frm_outgmsgs:
filename: frm_outgmsgs
fserve:
filename: fserve
fuckem:
filename: fuckem
fullrain:
filename: fullrain
fullwidth:
filename: fullwidth
getop:
filename: getop
gimmie:
filename: gimmie
gitscriptassist:
filename: gitscriptassist
go:
filename: go
go2:
filename: go2
google:
filename: google
moduls: []
selfcheck: 1
gpgvalidator:
filename: gpgvalidator
greetignore:
filename: greetignore
grep:
filename: grep
grepbans:
filename: grepbans
gsi:
filename: gsi
guts:
filename: guts
hddtemp:
filename: hddtemp
hello:
filename: hello
hide:
filename: hide
hideauth:
filename: hideauth
hideshow:
filename: hideshow
highlite:
filename: highlite
hignore:
filename: hignore
hilightcmd:
filename: hilightcmd
hilightwin:
filename: hilightwin
hilite_url:
filename: hilite_url
hipchat_complete:
filename: hipchat_complete
history_search:
filename: history_search
hitcount:
filename: hitcount
hl:
filename: hl
hlbot:
filename: hlbot
hlscroll:
filename: hlscroll
hostname:
filename: hostname
iMPD:
filename: iMPD
ident:
filename: ident
identd:
filename: identd
idletime:
filename: idletime
ido_switcher:
filename: ido_switcher
idonkey:
filename: idonkey
ignore_join_blob:
filename: ignore_join_blob
ignore_log:
filename: ignore_log
ignoreoc:
filename: ignoreoc
ignorsula:
filename: ignorsula
il:
filename: il
imdb:
filename: imdb
moduls:
- HTML::Entities
- LWP::UserAgent
selfcheck: 1
intercept:
filename: intercept
intjoin:
filename: intjoin
invitejoin:
filename: invitejoin
ipupdate:
filename: ipupdate
iquiz:
filename: iquiz
iraident:
filename: iraident
irc_chess:
filename: irc_chess
irccomplete:
filename: irccomplete
ircgallery:
filename: ircgallery
ircgmessagenotify:
filename: ircgmessagenotify
ircops:
filename: ircops
ircsec:
filename: ircsec
ircuwhois:
filename: ircuwhois
irssi-feed:
filename: irssi-feed
irssiBlaster:
filename: irssiBlaster
irssi_logger:
filename: irssi_logger
isbanned:
filename: isbanned
isdn:
filename: isdn
itime:
filename: itime
ixmmsa:
filename: ixmmsa
joininfo:
filename: joininfo
jpqnmwin:
filename: jpqnmwin
jump:
filename: jump
kban-referrals:
filename: kban-referrals
kblamehost:
filename: kblamehost
keepnick:
filename: keepnick
kenny:
filename: kenny
kernel:
filename: kernel
keybinds:
filename: keybinds
kicks:
filename: kicks
kill_fake_gets:
filename: kill_fake_gets
kills:
filename: kills
kline_warning:
filename: kline_warning
l33tmusic:
filename: l33tmusic
lastfm:
filename: lastfm
lastspoke:
filename: lastspoke
len:
filename: len
leodict:
filename: leodict
moduls:
- Mojo::DOM
- Mojo::UserAgent
selfcheck: 1
levelclear:
filename: levelclear
licq:
filename: licq
linebuffer:
filename: linebuffer
linkchan:
filename: linkchan
listen:
filename: listen
listsort:
filename: listsort
loadavg:
filename: loadavg
localize:
filename: localize
log2ansi:
filename: log2ansi
logcompress:
filename: logcompress
logcompress_perl:
filename: logcompress_perl
logresume:
filename: logresume
long_messages:
filename: long_messages
ls:
filename: ls
lwho:
filename: lwho
mail:
filename: mail
mailcheck_imap:
filename: mailcheck_imap
mailcheck_mbox_flux:
filename: mailcheck_mbox_flux
mailcheck_pop3_kimmo:
filename: mailcheck_pop3_kimmo
mailcount:
filename: mailcount
mangle:
filename: mangle
map:
filename: map
mass_hilight_blocker:
filename: mass_hilight_blocker
matryoshka:
filename: matryoshka
matterircd_complete:
filename: matterircd_complete
merge_resources:
filename: merge_resources
messages_bottom:
filename: messages_bottom
mg:
filename: mg
mh_hold_mode:
filename: mh_hold_mode
mh_invite:
filename: mh_invite
mh_sbsplitmode:
filename: mh_sbsplitmode
mh_sbuserinfo:
filename: mh_sbuserinfo
mh_secureonlychan_489:
filename: mh_secureonlychan_489
mh_userstatus:
filename: mh_userstatus
mh_windowfill:
filename: mh_windowfill
miodek:
filename: miodek
mirc_colour_popup:
filename: mirc_colour_popup
mkick:
filename: mkick
mldonkey_bandwidth:
filename: mldonkey_bandwidth
mlock:
filename: mlock
modelist:
filename: modelist
modelist-r:
filename: modelist-r
monitor:
filename: monitor
mood:
filename: mood
morse:
filename: morse
mouse:
filename: mouse
mouse-awl:
filename: mouse-awl
mouse_soliton:
filename: mouse_soliton
mpd:
filename: mpd
mpg123:
filename: mpg123
mqtt-notify:
filename: mqtt-notify
msg2notice:
filename: msg2notice
msg2notice_regex:
filename: msg2notice_regex
multipaste:
filename: multipaste
munge_own_nickname_to_username:
filename: munge_own_nickname_to_username
my_beep:
filename: my_beep
mysqlurllogger:
filename: mysqlurllogger
nact:
filename: nact
netswitch:
filename: netswitch
news:
filename: news
newsline:
filename: newsline
nickban:
filename: nickban
nickcolor:
filename: nickcolor
nickcolor_expando:
filename: nickcolor_expando
nickcolor_gay:
filename: nickcolor_gay
nickignore:
filename: nickignore
nicklist:
filename: nicklist
nickmix-c0ffee:
filename: nickmix-c0ffee
nickmix_pasky:
filename: nickmix_pasky
nickserv:
filename: nickserv
niq:
filename: niq
nm:
filename: nm
nm2:
filename: nm2
nocaps:
filename: nocaps
nocollide:
filename: nocollide
noisyquery:
filename: noisyquery
nopl:
filename: nopl
norepeat:
filename: norepeat
notes:
filename: notes
noticelogic:
filename: noticelogic
noticemove:
filename: noticemove
notifyquit:
filename: notifyquit
notonline:
filename: notonline
null:
filename: null
ogg123:
filename: ogg123
oidenty:
filename: oidenty
on:
filename: on
ontv2:
filename: ontv2
moduls:
- XML::LibXML::Simple
- DateTime::Format::Strptime
- YAML::XS
- DateTime
selfcheck: 1
oops:
filename: oops
oopsie:
filename: oopsie
openurl:
filename: openurl
operit:
filename: operit
operview:
filename: operview
opnotice:
filename: opnotice
opnotify:
filename: opnotify
orphamp:
filename: orphamp
osd:
filename: osd
ownage:
filename: ownage
page-c0ffee:
filename: page-c0ffee
page_reeler:
filename: page_reeler
pager:
filename: pager
pangotext:
filename: pangotext
partial:
filename: partial
paste-derwan:
filename: paste-derwan
paste_derwan:
filename: paste_derwan
paste_huggie:
filename: paste_huggie
paste_kimmoke:
filename: paste_kimmoke
pelix:
filename: pelix
people:
filename: people
per_window_prompt:
filename: per_window_prompt
perlalias:
filename: perlalias
pggb_sound:
filename: pggb_sound
poison:
filename: poison
postpone:
filename: postpone
ppl:
filename: ppl
print_signals:
filename: print_signals
procmaillog:
filename: procmaillog
pushsafer:
filename: pushsafer
qchallengeauth:
filename: qchallengeauth
quakequit:
filename: quakequit
query:
filename: query
query_whois:
filename: query_whois
queryresume:
filename: queryresume
quitmsg:
filename: quitmsg
quitrand:
filename: quitrand
quiz:
filename: quiz
quizgr:
filename: quizgr
quizmaster:
filename: quizmaster
quizmaster-fr:
filename: quizmaster-fr
rainbow:
filename: rainbow
randaway:
filename: randaway
randname:
filename: randname
recentdepart:
filename: recentdepart
redirect:
filename: redirect
relm:
filename: relm
remote:
filename: remote
reorder:
filename: reorder
repeat:
filename: repeat
replace:
filename: replace
resize_split:
filename: resize_split
revolve:
filename: revolve
rhythmbox:
filename: rhythmbox
rk:
filename: rk
romaji:
filename: romaji
romajibind:
filename: romajibind
rot13:
filename: rot13
rotator:
filename: rotator
rud_emotes:
filename: rud_emotes
savecmdhist:
filename: savecmdhist
sb_position:
filename: sb_position
sb_search:
filename: sb_search
sbclearmatch:
filename: sbclearmatch
sbmove:
filename: sbmove
schwaebisch:
filename: schwaebisch
screen_away:
filename: screen_away
scriptassist:
filename: scriptassist
scripthelp:
filename: scripthelp
scriptinfo:
filename: scriptinfo
scriptsave:
filename: scriptsave
scrmable:
filename: scrmable
scroller:
filename: scroller
securemsg:
filename: securemsg
seen:
filename: seen
send_scroll:
filename: send_scroll
server_time:
filename: server_time
servercomplete:
filename: servercomplete
settingshelp:
filename: settingshelp
shortenurl:
filename: shortenurl
shorturl:
filename: shorturl
moduls:
- LWP::Simple
- LWP::UserAgent
- LWP::Protocol::https
selfcheck: 1
showhilight:
filename: showhilight
showhost:
filename: showhost
showinactive:
filename: showinactive
showmode:
filename: showmode
signal_hilight:
filename: signal_hilight
slack_complete:
filename: slack_complete
slack_emoji:
filename: slack_emoji
slack_strip_auto_cc:
filename: slack_strip_auto_cc
smartfilter:
filename: smartfilter
smiley:
filename: smiley
sms:
filename: sms
smshilight:
filename: smshilight
snmpup:
filename: snmpup
spambot:
filename: spambot
special_complete:
filename: special_complete
spell:
filename: spell
spellcheck:
filename: spellcheck
sping:
filename: sping
splitlong:
filename: splitlong
spotify:
filename: spotify
synccheck:
filename: synccheck
sysinfo270-irssi:
filename: sysinfo270-irssi
sysinfo277-irssi:
filename: sysinfo277-irssi
sysinfo_dg:
filename: sysinfo_dg
sysinfoplus:
filename: sysinfoplus
tab_stop:
filename: tab_stop
tabcompletenick:
filename: tabcompletenick
talk:
filename: talk
target:
filename: target
tb-test:
filename: tb-test
telegram-notify:
filename: telegram-notify
test:
filename: test
moduls:
- Devel::Symdump
selfcheck: 1
thankop:
filename: thankop
theme:
filename: theme
thistory:
filename: thistory
tictactoe:
filename: tictactoe
timer:
filename: timer
timezones:
filename: timezones
tinyurl:
filename: tinyurl