Skip to content

Instantly share code, notes, and snippets.

@tslocum
Created August 15, 2013 02:35
Show Gist options
  • Select an option

  • Save tslocum/6237734 to your computer and use it in GitHub Desktop.

Select an option

Save tslocum/6237734 to your computer and use it in GitHub Desktop.
servers = (
{
address = "irc.1chan.us";
chatnet = "1chan";
port = "6667";
autoconnect = "yes";
},
{
address = "irc.7chan.org";
chatnet = "7chan";
port = "6667";
autoconnect = "yes";
},
{
address = "irc.freenode.net";
chatnet = "freenode";
port = "6667";
autoconnect = "yes";
},
{ address = "irc.efnet.org"; chatnet = "EFNet"; port = "6667"; },
{ address = "irc.dal.net"; chatnet = "DALnet"; port = "6667"; }
);
chatnets = {
1chan = {
type = "IRC";
autosendcmd = "/msg nickserv ghost tee PASSWORD;wait 2200;/nick tee;wait 2200;/msg nickserv identify PASSWORD;wait 2200;/join #idlerpg;wait 2200;/^msg idlerpg login tee PASSWORD;wait 2200";
max_kicks = "4";
max_msgs = "3";
max_whois = "30";
};
7chan = {
type = "IRC";
autosendcmd = "/msg nickserv ghost tee PASSWORD;wait 2200;/nick tee;wait 2200;/msg nickserv identify PASSWORD;wait 2200;";
max_kicks = "4";
max_msgs = "3";
max_whois = "30";
};
freenode = {
type = "IRC";
autosendcmd = "/msg nickserv ghost rocketnine PASSWORD;wait 2200;/nick rocketnine;wait 2200;/msg nickserv identify PASSWORD;wait 2200;/msg multirpg login ZALVADOR PASSWORD;wait 2000";
max_kicks = "4";
max_msgs = "3";
max_whois = "30";
};
EFNet = {
type = "IRC";
max_kicks = "4";
max_msgs = "3";
max_whois = "1";
};
DALnet = {
type = "IRC";
max_kicks = "4";
max_msgs = "3";
max_whois = "30";
};
};
channels = (
{ name = "#1chan"; chatnet = "1chan"; autojoin = "yes"; },
{ name = "#1ch-services"; chatnet = "1chan"; autojoin = "yes"; },
{ name = "#idlerpg"; chatnet = "1chan"; autojoin = "yes"; },
{ name = "#7chan"; chatnet = "7chan"; autojoin = "yes"; },
{ name = "#digitalocean"; chatnet = "freenode"; autojoin = "yes"; },
{ name = "#multirpg"; chatnet = "freenode"; autojoin = "yes"; }
);
settings = {
core = {
real_name = "Rocket Nine";
user_name = "rocketnine";
nick = "rocketnine";
};
"fe-text" = { actlist_sort = "refnum"; };
"fe-common/core" = {
autocreate_own_query = "no";
autocreate_query_level = "DCCMSGS";
use_status_window = "no";
use_msgs_window = "yes";
theme = "zenbarn";
activity_hide_targets = "#multirpg #idlerpg #digitalocean";
};
"perl/core/scripts" = {
neat_maxlength = "10";
usercount_show_zero = "no";
};
};
hilights = (
{ text = "tee"; nick = "yes"; fullword = "yes"; },
{ text = "rocketnine"; nick = "yes"; word = "yes"; },
{ text = "rocket nine"; nick = "yes"; word = "yes"; }
);
ignores = ( );
statusbar = {
default = {
window = {
items = {
barstart = { priority = "100"; };
time = { };
user = { };
window = { };
window_empty = { };
lag = { priority = "-1"; };
act = { priority = "10"; };
more = { priority = "-1"; alignment = "right"; };
barend = { priority = "100"; alignment = "right"; };
usercount = { };
};
};
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment