summaryrefslogtreecommitdiff
path: root/config
blob: 6ca319019894a35fef2d2eae3a10d033af2daf09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
setupservers = (
  {server = "irc.funet.fi"; ircnet = IRCNet; port = 6667; autoconnect = No;},
  {server = "irc.efnet.net"; ircnet = EFNet; port = 6667; autoconnect = No;},
  {server = "irc.undernet.net"; ircnet = Undernet; port = 6667; autoconnect = No;},
  {server = "irc.dal.net"; ircnet = DALNet; port = 6667; autoconnect = No;},
  {server = "irc.openprojects.net"; ircnet = OPN; port = 6667; autoconnect = No;},
  {server = "irc.ptlink.net"; ircnet = PTlink; port = 6667; autoconnect = No;},
  {server = "irc.multichat.org"; ircnet = Multichat; port = 6667; autoconnect = No;}
);

ircnets = (
  {name = IRCNet; max_kicks = 4; max_modes = 3; max_msgs = 5; max_whois = 4;},
  {name = EFNet; max_kicks = 4; max_modes = 4; max_msgs = 3;},
  {name = Undernet; max_kicks = 4; max_modes = 3; max_msgs = 3;},
  {name = DALNet; max_kicks = 4; max_modes = 6; max_msgs = 3;},
  {name = OPN; max_kicks = 1; max_modes = 6; max_msgs = 100;},
  {name = PTlink; max_kicks = 1; max_modes = 6; max_msgs = 100;}
);

channels = (
  {
    name = "#irssi";
    ircnet = ircnet;
    autojoin = No;
  }
);
aliases = {
  J = "join";
  LEAVE = "part";
  BYE = "quit";
  EXIT = "quit";
  SIGNOFF = "quit";
  DESCRIBE = "action";
  DATE = "time";
  HOST = "userhost";
  LAST = "lastlog";
  SAY = "msg *";
  WI = "whois";
  WII = "whois $0 $0";
  WW = "whowas";
  W = "who $C";
  N = "names $C";
  M = "msg";
  T = "topic";
  C = "clear";
  CL = "clear";
  K = "kick";
  KB = "kickban";
  KN = "knockout";
  B = "ban";
  UB = "unban";
  IG = "ignore";
  UNIG = "unignore";
  SB = "scrollback";
  UMODE = "mode $N";
};
popups = (
  {label = "<MULTICOMMA>Whois"; command = "/whois %s";},
  {label = "DCC Send File"; command = "/dcc send %s";},
  {label = "Open DCC Chat"; command = "/dcc chat %s";},
  {label = Query; command = "/query %s";},
  {label = "<MENU><OP>"; command = "Op";},
  {label = "<MULTI>Op"; command = "/op %s";},
  {label = "<MULTI>Deop"; command = "/deop %s";},
  {label = "<MULTI>Voice"; command = "/voice %s";},
  {label = "<MULTI>Devoice"; command = "/devoice %s";},
  {label = "<KICK>Kick"; command = "/kick %s %s";},
  {label = "<MULTI>Ban"; command = "/ban %s";},
  {label = "<KICK>Kick+ban"; command = "/kickban %s %s";},
  {label = "<KICK>Knockout"; command = "/knockout %s %s";},
  {label = "</MENU>"; command = "";},
  {label = "<MENU>"; command = "CTCP";},
  {label = Ping; command = "/ping %s";},
  {label = Version; command = "/ver %s";},
  {label = "</MENU>"; command = "";}
);