about summary refs log tree commit diff
path: root/configs/shared
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2019-04-08T16·19+0100
committerWilliam Carroll <wpcarro@gmail.com>2019-04-08T16·19+0100
commit5144384becd51a32870ccc6f6a8a87979c5244c6 (patch)
treee2d66f2869d67fd0e8a7e530da6c724e6853cb92 /configs/shared
parent9bc3cbece257bb9154430e6eaa44bd5c0d9f49e5 (diff)
Support Google IRC in irssi
Also changes a few config settings for auto{connect,join}ing. This is still a
WIP.
Diffstat (limited to 'configs/shared')
-rw-r--r--configs/shared/misc/.irssi/config16
1 files changed, 14 insertions, 2 deletions
diff --git a/configs/shared/misc/.irssi/config b/configs/shared/misc/.irssi/config
index 3d29350accd7..cfd6adcc0616 100644
--- a/configs/shared/misc/.irssi/config
+++ b/configs/shared/misc/.irssi/config
@@ -5,7 +5,16 @@ servers = (
     port = "6697";
     use_tls = "yes";
     tls_verify = "yes";
-    autoconnect = "yes";
+    autoconnect = "no";
+  },
+  {
+    address = "irc.corp.google.com";
+    chatnet = "Google";
+    port = "6697";
+    use_tls = "yes";
+    tls_verify = "yes";
+    autoconnect = "no";
+    server_reconnect_time = 5;
   }
 );
 
@@ -14,10 +23,13 @@ chatnets = {
     type = "IRC";
     autosendcmd = "/msg nickserv identify wpcarro ]3Fwus]YF7yXPB6Re/Me";
   };
+  Google = {
+    type = "IRC";
+  };
 };
 
 channels = (
-  { name = "#nixos"; chatnet = "Freenode"; autojoin = "Yes"; },
+  { name = "#nixos"; chatnet = "Freenode"; autojoin = "No"; },
   { name = "#i3"; chatnet = "Freenode"; autojoin = "No"; },
   { name = "#pass"; chatnet = "Freenode"; autojoin = "No"; },
 );