irssi: better extended join formatting

This commit is contained in:
xfnw 2022-06-11 16:31:55 -04:00
parent c2b43edeb6
commit 6aed247b02
2 changed files with 9 additions and 1 deletions

View File

@ -1,7 +1,7 @@
aliases = {
ATAG = "WINDOW SERVER";
ADDALLCHANS = "SCRIPT EXEC foreach my \\$channel (Irssi::channels()) { Irssi::command(\"CHANNEL ADD -auto \\$channel->{name} \\$channel->{server}->{tag} \\$channel->{key}\")\\;}";
B = "BAN";
B = "WINDOW GOTO";
BACK = "AWAY";
BANS = "BAN";
BYE = "QUIT";

View File

@ -258,3 +258,11 @@ abstracts = {
# hilight with specified color, $0 = color, $1 = text
sb_act_hilight_color = "$0$1-%n";
};
formats = {
"fe-common/core" = {
join_extended = "{channick_hilight $0} {reason $4} {chanhost_hilight $1} has joined {channel $2}";
join_extended_account = "{channick_hilight $0} [{hilight $3}] {reason $4} {chanhost_hilight $1} has joined {channel $2}";
logged_out = "{channick $0} {chanhost $1} has unidentified";
logged_in = "{channick_hilight $0} {chanhost_hilight $1} has identified as {hilight $2}";
};
};