aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Runge <david.runge@frqrec.com>2014-11-28 15:52:00 +0100
committerDavid Runge <david.runge@frqrec.com>2014-11-28 15:52:00 +0100
commite39c0420a829c4507989f88c446461b05af9b7aa (patch)
tree1b5931e52c3f44d5acbd87b76e9c6489fc9a5a28
parentbcaf532500e82747f6266c11ec1347a431886fcb (diff)
downloaddotfiles-e39c0420a829c4507989f88c446461b05af9b7aa.tar.gz
dotfiles-e39c0420a829c4507989f88c446461b05af9b7aa.tar.bz2
dotfiles-e39c0420a829c4507989f88c446461b05af9b7aa.tar.xz
dotfiles-e39c0420a829c4507989f88c446461b05af9b7aa.zip
irssi: Added faster configuration, removed hiding of messages in small chans. Removed custom irssi nicklist script
-rw-r--r--.irssi/config24
-rwxr-xr-xbin/irssi14
2 files changed, 7 insertions, 31 deletions
diff --git a/.irssi/config b/.irssi/config
index 65d2d4c..51c1c8b 100644
--- a/.irssi/config
+++ b/.irssi/config
@@ -4,6 +4,7 @@ servers = (
chatnet = "bitlbee";
port = "6667";
autoconnect = "yes";
+ password = "st3ll4r.3nv3l0p3";
},
{
address = "chat.freenode.org";
@@ -11,6 +12,7 @@ servers = (
port = "6697";
use_ssl = "yes";
autoconnect = "yes";
+ password = "dvzrv:s0m3th1ng.n3w.4tw";
},
{
address = "irc.swepipe.se";
@@ -32,21 +34,13 @@ servers = (
port = "6697";
use_ssl = "yes";
autoconnect = "yes";
+ password = "mAdmAchInE:bl4hbl4hbl4h";
}
);
chatnets = {
- bitlbee = {
- type = "IRC";
- nick = "DavidRunge";
- autosendcmd = "/msg -bitlbee &bitlbee identify st3ll4r.3nv3l0p3; wait -bitlbee 2000";
- };
- freenode = {
- type = "IRC";
- nick = "dvzrv";
- realname = "David Runge";
- autosendcmd = "/msg nickserv identify bl4hbl4hbl4h;wait 2000";
- };
+ bitlbee = { type = "IRC"; nick = "DavidRunge"; };
+ freenode = { type = "IRC"; nick = "dvzrv"; realname = "David Runge"; };
efnet = {
type = "IRC";
max_kicks = "4";
@@ -54,7 +48,6 @@ chatnets = {
max_whois = "1";
nick = "dvzrv";
real_name = "David Runge";
- autosendcmd = "/NICKLIST FIFO";
};
oftc = { type = "IRC"; nick = "dvzrv"; realname = "David Runge"; };
whatcd = {
@@ -272,10 +265,7 @@ settings = {
autolog_ignore_targets = "bitlbee/&bitlbee";
};
"perl/core/scripts" = {
- nicklist_height = "500";
- nicklist_width = "20";
tmux_away_active = "yes";
- nicklist_automode = "FIFO";
};
};
@@ -305,7 +295,7 @@ ignores = (
channels = ( "#what.cd-help" );
},
{
- level = "JOINS PARTS QUITS MODES NICKS";
+ level = "";
channels = ( "#unixpool" );
},
{
@@ -321,7 +311,7 @@ ignores = (
channels = ( "#twitter_frqrec" );
},
{
- level = "JOINS PARTS QUITS MODES NICKS";
+ level = "";
channels = ( "#freaks" );
}
);
diff --git a/bin/irssi b/bin/irssi
deleted file mode 100755
index edb0084..0000000
--- a/bin/irssi
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env zsh
-# Script to start irssi within tmux with attached Nicklist in vertical split on right side
-
-if [[ $(hostname) == *frqrec* ]]; then
- tmux renamew irssi
- tmux splitw -h -p 10
- tmux send-keys -t irssi.1 "cat ~/.irssi/nicklistfifo" C-m
- tmux select-pane -t irssi.0
- (sleep 3 && tmux send-keys -t irssi.0 "/nicklist fifo" C-m)&
- /usr/bin/irssi
- wait && tmux kill-pane -t irssi.1 && tmux rename-window $(ps -p $$|grep pts|cut -c16-|cut -d ' ' -f2)
-else
- /usr/bin/irssi
-fi