Created
February 3, 2015 01:49
-
-
Save bryant/fd96c8da428beaea7617 to your computer and use it in GitHub Desktop.
weechat darkened join-part messages.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# create a trigger.conf with the below contents. or, apply the below to section | |
# [trigger] of the existing trigger.conf. then issue /reload from inside | |
# weechat. | |
[trigger] | |
irc_join.arguments = "2000|weechat_print" | |
irc_join.command = "" | |
irc_join.conditions = "${tg_tags} =~ ,irc_join," | |
irc_join.enabled = on | |
irc_join.hook = modifier | |
irc_join.regex = "/.*/${tg_prefix}\t${color:237}${tg_message_nocolor}" | |
irc_join.return_code = ok | |
irc_part.arguments = "2000|weechat_print" | |
irc_part.command = "" | |
irc_part.conditions = "${tg_tags} =~ ,irc_part," | |
irc_part.enabled = on | |
irc_part.hook = modifier | |
irc_part.regex = "/.*/${tg_prefix}\t${color:237}${tg_message_nocolor}" | |
irc_part.return_code = ok | |
irc_quit.arguments = "2000|weechat_print" | |
irc_quit.command = "" | |
irc_quit.conditions = "${tg_tags} =~ ,irc_quit," | |
irc_quit.enabled = on | |
irc_quit.hook = modifier | |
irc_quit.regex = "/.*/${tg_prefix}\t${color:237}${tg_message_nocolor}" | |
irc_quit.return_code = ok |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment