]> git.99rst.org Git - irssi-scripts.irssi.org.git/commitdiff
[hilightwin] Default to not showing network name
authorrummik <redacted>
Thu, 6 Apr 2017 20:28:24 +0000 (16:28 -0400)
committerrummik <redacted>
Thu, 6 Apr 2017 20:28:24 +0000 (16:28 -0400)
scripts/hilightwin.pl

index 70e31e40b4d830175001e2633c7c7c4ce06eca9c..3bb28635932afb017776641171d6ac96f31c406f 100644 (file)
@@ -5,8 +5,8 @@
 # Modded a tiny bit by znx to stop private messages entering the hilighted
 # window (can be toggled) and to put up a timestamp.
 #
-# Changed a little by rummik to optionally show network name. Disable with
-# `/set hilightwin_shownetwork off`
+# Changed a little by rummik to optionally show network name. Enable with
+# `/set hilightwin_shownetwork on`
 #
 
 use strict;
@@ -78,7 +78,7 @@ Irssi::print("Create a window named 'hilight'") if (!$window);
 
 Irssi::settings_add_bool('hilightwin','hilightwin_showprivmsg',1);
 Irssi::settings_add_str('hilightwin', 'hilightwin_ignore_targets', '');
-Irssi::settings_add_bool('hilightwin','hilightwin_show_network', 1);
+Irssi::settings_add_bool('hilightwin','hilightwin_show_network', 0);
 
 Irssi::signal_add('print text', 'sig_printtext');
 
git clone https://git.99rst.org/PROJECT