d0tfiles

*nix dotfiles for arch linux setup
Log | Files | Refs | README | LICENSE

config (3792B)


      1 #  ██                        ██
      2 # ░░                        ░░
      3 #  ██ ██████  ██████  ██████ ██
      4 # ░██░░██░░█ ██░░░░  ██░░░░ ░██
      5 # ░██ ░██ ░ ░░█████ ░░█████ ░██
      6 # ░██ ░██    ░░░░░██ ░░░░░██░██
      7 # ░██░███    ██████  ██████ ░██
      8 # ░░ ░░░    ░░░░░░  ░░░░░░  ░░
      9 #
     10 #  ▓▓▓▓▓▓▓▓▓▓
     11 # ░▓ author ▓ xero <x@xero.nu>
     12 # ░▓ code   ▓ http://code.xero.nu/dotfiles
     13 # ░▓ mirror ▓ http://git.io/.files
     14 # ░▓▓▓▓▓▓▓▓▓▓
     15 # ░░░░░░░░░░
     16 
     17 utf8 = "on";
     18 
     19 servers = (
     20   {
     21     address = "unix.chat";
     22     chatnet = "unixchat";
     23     port = "6697";
     24     use_ssl = "yes";
     25     ssl_verify = "no";
     26     autoconnect = "yes";
     27   },
     28   {
     29     address = "irc.us.ircnet.net";
     30     chatnet = "ircnet";
     31     autoconnect = "yes";
     32   },
     33   {
     34     address = "irc.cyberia.is";
     35     chatnet = "cyberia";
     36     port = "6697";
     37     use_ssl = "yes";
     38     autoconnect = "yes";
     39   },
     40   {
     41     address = "irc.blackhats.ru";
     42     chatnet = "blackhats";
     43     port = "6697";
     44     use_ssl = "yes";
     45     autoconnect = "yes";
     46   }
     47 );
     48 
     49 chatnets = {
     50   unixchat = { type = "IRC"; nick = "l0bster"; };
     51   ircnet = { type = "IRC"; nick = "l0bster"; };
     52   efnet = { type = "IRC"; nick = "l0bster"; };
     53   cyberia = { type = "IRC"; nick = "l0bster"; };
     54   blackhats = { type = "IRC"; nick = "l0bster"; };
     55 };
     56 
     57 channels = (
     58   { name = "#2f30"; chatnet = "cyberia"; autojoin = "Yes"; },
     59   { name = "#ascii"; chatnet = "ircnet"; autojoin = "Yes"; },
     60   { name = "#askee"; chatnet = "efnet"; autojoin = "Yes"; },
     61   { name = "#cyberia"; chatnet = "cyberia"; autojoin = "Yes"; },
     62   { name = "#security"; chatnet = "blackhats"; autojoin = "No"; },
     63   { name = "#unix"; chatnet = "unixchat"; autojoin = "Yes"; },
     64   { name = "#unixporn"; chatnet = "unixchat"; autojoin = "Yes"; }
     65 );
     66 
     67 aliases = {
     68   graff = "exec -o graff";
     69   emote = "exec -o emote";
     70   ascii = "hello";
     71   rusto = "exec -o toilet -f rusto --irc";
     72   rustofat = "exec -o toilet -f rustofat --irc";
     73   gay = "exec -o toilet -f term --gay --irc";
     74   toilet = "exec -o toilet";
     75   ns = "msg nickserv";
     76   cs = "msg chanserv";
     77   os = "msg operserv";
     78   w = "win";
     79 };
     80 
     81 settings = {
     82   core = { 
     83     real_name = "th4tsmrl0bster2U";
     84     user_name = "l0bster";
     85     nick = "l0bster";
     86   };
     87   "fe-text" = {
     88     actlist_sort = "refnum";
     89     term_force_colors = "yes";
     90     indent = "12";
     91     paste_verify_line_count = "0";
     92   };
     93   "fe-common/core" = {
     94     theme = "neongold.theme";
     95     autolog_path = "~/irc/$tag/$0.log";
     96     autolog = "yes";
     97   };
     98   "irc / core" = {
     99     ctcp_userinfo_reply = "rip";
    100     ctcp_version_reply = "rip";
    101     max_ctcp_queue = "0";
    102   };
    103 };
    104 logs = { };
    105 statusbar = {
    106   default = {
    107     window = {
    108       items = {
    109         barstart = { priority = "100"; };
    110         user = { };
    111         window = { };
    112         window_empty = { };
    113         lag = { priority = "-1"; };
    114         act = { priority = "10"; };
    115         more = { priority = "-1"; alignment = "right"; };
    116         barend = { priority = "100"; alignment = "right"; };
    117       };
    118     };
    119   };
    120 };
    121 
    122 ignores = (
    123   { level = "JOINS PARTS QUITS"; channels = ( "#2f30" ); },
    124   { level = "JOINS PARTS QUITS"; channels = ( "#ascii" ); },
    125   { level = "JOINS PARTS QUITS"; channels = ( "#askee" ); },
    126   { level = "JOINS PARTS QUITS"; channels = ( "#cyberia" ); },
    127   { level = "JOINS PARTS QUITS"; channels = ( "#gentlemanloster" ); },
    128   { level = "JOINS PARTS QUITS"; channels = ( "#security" ); },
    129   { level = "JOINS PARTS QUITS"; channels = ( "#unixporn" ); },
    130   { mask = "DCC"; level = "ALL"; },
    131   { mask = "CTCPS"; level = "ALL"; }
    132 );