archive

- Random tools & helpful resources for IRC
git clone git://git.acid.vegas/archive.git
Log | Files | Refs | Archive

config (5705B)

      1 servers = (
      2   { address = "irc.supernets.org"; chatnet = "supernets"; port = "6697"; autoconnect = "no"; use_ssl = "yes"; }
      3 );
      4 
      5 chatnets = {
      6   supernets = { type = "IRC"; };
      7 };
      8 
      9 channels = (
     10   { name = "#christ";    chatnet = "supernets"; autojoin = "yes"; },
     11   { name = "#dev";       chatnet = "supernets"; autojoin = "yes"; },
     12   { name = "#help";      chatnet = "supernets"; autojoin = "yes"; },
     13   { name = "#pumpcoin";  chatnet = "supernets"; autojoin = "yes"; },
     14   { name = "#scroll";    chatnet = "supernets"; autojoin = "yes"; },
     15   { name = "#superbowl"; chatnet = "supernets"; autojoin = "yes"; },
     16   { name = "#tor";       chatnet = "supernets"; autojoin = "yes"; },
     17   { name = "#tunes";     chatnet = "supernets"; autojoin = "yes"; }
     18 );
     19 
     20 aliases = {
     21   wc = "window close";
     22 };
     23 
     24 statusbar = {
     25   items = {
     26     barstart = "{sbstart}";
     27     barend = "{sbend}";
     28     topicbarstart = "{topicsbstart}";
     29     topicbarend = "{topicsbend}";
     30     time = "";
     31     user = "";
     32     window = "";
     33     window_empty = "";
     34     prompt = "{prompt $[.15]itemname@$tag}";
     35     prompt_empty = "{prompt $winname}";
     36     topic = " $topic";
     37     topic_empty = "";
     38     act = "";
     39     lag = "";
     40     more = "-- more --";
     41   };
     42   default = {
     43     window = {
     44       disabled = "yes";
     45       type = "window";
     46       placement = "bottom";
     47       position = "1";
     48       visible = "active";
     49       items = {
     50         barstart = { priority = "100"; };
     51         time = { };
     52         user = { };
     53         window = { };
     54         window_empty = { };
     55         lag = { priority = "-1"; };
     56         more = { priority = "-1"; alignment = "right"; };
     57         barend = { priority = "100"; alignment = "right"; };
     58       };
     59     };
     60     window_inact = {
     61       type = "window";
     62       placement = "bottom";
     63       position = "1";
     64       visible = "inactive";
     65       items = {
     66         barstart = { priority = "100"; };
     67         window = { };
     68         window_empty = { };
     69         more = { priority = "-1"; alignment = "right"; };
     70         barend = { priority = "100"; alignment = "right"; };
     71       };
     72       disabled = "yes";
     73     };
     74     prompt = {
     75       type = "root";
     76       placement = "bottom";
     77       position = "100";
     78       visible = "always";
     79       items = {
     80         prompt = { priority = "-1"; };
     81         prompt_empty = { priority = "-1"; };
     82         colours = { alignment = "right"; };
     83         input = { priority = "10"; };
     84       };
     85     };
     86     topic = {
     87       type = "root";
     88       placement = "top";
     89       position = "1";
     90       visible = "always";
     91       items = {
     92         topicbarstart = { priority = "100"; };
     93         topic = { };
     94         topic_empty = { };
     95         topicbarend = { priority = "100"; alignment = "right"; };
     96       };
     97     };
     98     inact = { items = { }; disabled = "yes"; };
     99     awl_0 = {
    100       items = {
    101         barstart = { priority = "100"; };
    102         awl_0 = { };
    103         barend = { priority = "100"; alignment = "right"; };
    104       };
    105     };
    106   };
    107 };
    108 
    109 settings = {
    110   core = {
    111     nick = "CHANGEME";
    112     quit_message = "G-line: User has been permanently banned from this network.";
    113     real_name = "CHANGEME";
    114     settings_autosave = "yes";
    115     timestamp_format = "%I:%M";
    116     user_name = "CHANGEME";
    117     server_reconnect_time = "5min";
    118     recode_fallback = "UTF-8";
    119     recode_out_default_charset = "UTF-8";
    120     recode_transliterate = "yes";
    121     recode = "yes";
    122     recode_autodetect_utf8 = "yes";
    123     awaylog_level = "hilight";
    124     awaylog_file = "~/.irssi/logs/away.log";
    125   };
    126   "fe-text" = { actlist_sort = "refnum"; };
    127   "irc/core" = {
    128     alternate_nick = "CHANGEME";
    129     channel_sync = "yes";
    130     cmds_max_at_once = "0";
    131     cmd_queue_speed = "0";
    132     ctcp_version_reply = "?";
    133     ctcp_userinfo_reply = "?";
    134     max_ctcp_queue = "0";
    135     part_message = "G-line: User has been permanently banned from this network.";
    136     usermode = "+ix";
    137     skip_motd = "yes";
    138     ban_type = "host";
    139     kick_first_on_kickban = "yes";
    140   };
    141   "irc/flood" = { flood_timecheck = "0"; flood_max_msgs = "0"; };
    142   "fe-common/core" = {
    143     show_names_on_join = "no";
    144     beep_msg_level = "MSGS HILIGHT";
    145     term_charset = "UTF-8";
    146     max_command_history = "25";
    147     autolog_path = "~/.irssi/logs/$tag/$0.log";
    148     autocreate_query_level = "MSGS";
    149     activity_hilight_level = "MSGS";
    150     beep_when_away = "no";
    151     beep_when_window_active = "no";
    152     hilight_level = "PUBLIC";
    153   };
    154   "perl/core/scripts" = {
    155     nickcolor_colors = "3 5 6 7 10 11 12 13 14";
    156     awl_shared_sbar = "OFF";
    157     awl_block = "-14";
    158     awl_viewer = "no";
    159     awl_prefer_name = "yes";
    160     awl_sbar_maxlength = "yes";
    161     chansort_autosort = "yes";
    162     awl_mouse = "yes";
    163   };
    164 };
    165 
    166 windows = { 1 = { immortal = "yes"; name = "status"; level = "ALL"; }; };
    167 mainwindows = { 1 = { first_line = "7"; lines = "13"; }; };
    168 logs = { };
    169 keyboard = ( 
    170   { key = "meta-[M"; id = "command"; data = "mouse_xterm"; }
    171 );
    172 ignores = (
    173   { mask = "*!*@services.supernets.org"; level = "CRAP MSGS PUBLICS NOTICES SNOTES CTCPS ACTIONS MODES TOPICS WALLOPS INVITES NICKS DCC DCCMSGS CLIENTNOTICES CLIENTCRAP CLIENTERRORS HILIGHTS"; servertag = "supernets"; },
    174   { mask = "*!*@super.nets";             level = "CRAP MSGS PUBLICS NOTICES SNOTES CTCPS ACTIONS MODES TOPICS WALLOPS INVITES NICKS DCC DCCMSGS CLIENTNOTICES CLIENTCRAP CLIENTERRORS HILIGHTS"; servertag = "supernets"; },
    175   { mask = "*!*@super.nets.bot";         level = "CRAP MSGS PUBLICS NOTICES SNOTES CTCPS ACTIONS MODES TOPICS WALLOPS INVITES NICKS DCC DCCMSGS CLIENTNOTICES CLIENTCRAP CLIENTERRORS HILIGHTS"; servertag = "supernets"; },
    176   { mask = "*!*@super.nets.link";        level = "CRAP MSGS PUBLICS NOTICES SNOTES CTCPS ACTIONS MODES TOPICS WALLOPS INVITES NICKS DCC DCCMSGS CLIENTNOTICES CLIENTCRAP CLIENTERRORS HILIGHTS"; servertag = "supernets"; }
    177 );