irssi – IRC Client

Proxy

/load proxy
/set irssiproxy_password toto
/set irssiproxy_ports freenode=2779

Change channel

Esc + left
Esc + right

Go to next active

Esc + a

XDCC

/msg toto xdcc list
/msg toto xdcc send #12
/dcc get toto
/dcc list
/set dcc_autoget ON
/set dcc_download_path /home/neolao/download

windows

/window close

connect

/connect 127.0.0.1 6667 pass login
/join -127 #chan

Configuration

servers = (
  {
    address = "irc.freenode.net";
    port = "6667";
    term_type = "utf-8";
    chatnet = "freenode";
    autoconnect = "yes";
  },
  {
    address = "irc.mozilla.org";
    port = "6667";
    term_type = "utf-8";
    chatnet = "mozilla";
    autoconnect = "yes";
  },
  {
    address = "neolao.irc.slack.com";
    chatnet = "slack";
    port = "6667";
    password = "neolao.1234";
    use_ssl = "yes";
    ssl_verify = "no";
    autoconnect = "yes";
  },

);

chatnets = {
  freenode = {
    type = "IRC";
    autosendcmd = "/msg NickServ identify prout";
  };
  mozilla = {
    type = "IRC";
    autosendcmd = "/msg NickServ identify prout";
  };
  slack = {
    type = "IRC";
    nick = "neolao";
  };

};

channels = (
  { name = "#openweb"; chatnet = "freenode"; autojoin = "yes"; },
  { name = "#tupperVim"; chatnet = "mozilla"; autojoin = "yes"; },
);

aliases = { };

statusbar = {
  # formats:
  # when using {templates}, the template is shown only if it's argument isn't
  # empty unless no argument is given. for example {sb} is printed always,
  # but {sb $T} is printed only if $T isn't empty.

  items = {
    # start/end text in statusbars
    barstart = "{sbstart}";
    barend = "{sbend}";

    topicbarstart = "{topicsbstart}";
    topicbarend = "{topicsbend}";

    # treated "normally", you could change the time/user name to whatever
    #time = "{sb $Z}";
    time = "";
    user = "{sb {sbnickmode $cumode}$N{sbmode $usermode}{sbaway $A}}";

    # treated specially .. window is printed with non-empty windows,
    # window_empty is printed with empty windows
    window = "{sb $winref:$tag/$itemname{sbmode $M}}";
    window_empty = "{sb $winref{sbservertag $tag}}";
    prompt = "{prompt $[.15]itemname}";
    prompt_empty = "{prompt $winname}";
    topic = " $topic";
    topic_empty = " ";

    # all of these treated specially, they're only displayed when needed
    lag = "{sb Lag: $0-}";
    act = "{sb Act: $0-}";
    more = "-- more --";
  };

  # there's two type of statusbars. root statusbars are either at the top
  # of the screen or at the bottom of the screen. window statusbars are at
  # the top/bottom of each split window in screen.
  default = {
    # the "default statusbar" to be displayed at the bottom of the window.
    # contains all the normal items.
    window = {
      disabled = "no";

      # window, root
      type = "window";
      # top, bottom
      placement = "bottom";
      # number
      position = "1";
      # active, inactive, always
      visible = "active";

      # list of items in statusbar in the display order
      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"; };
      };
    };

    # statusbar to use in inactive split windows
    window_inact = {
      type = "window";
      placement = "bottom";
      position = "1";
      visible = "inactive";
      items = {
        barstart = { priority = "100"; };
        window = { };
        window_empty = { };
        more = { priority = "-1"; alignment = "right"; };
        barend = { priority = "100"; alignment = "right"; };
      };
    };

    # we treat input line as yet another statusbar :) It's possible to
    # add other items before or after the input line item.
    prompt = {
      type = "root";
      placement = "bottom";
      # we want to be at the bottom always
      position = "100";
      visible = "always";
      items = {
        prompt = { priority = "-1"; };
        prompt_empty = { priority = "-1"; };
        # treated specially, this is the real input line.
        input = { priority = "10"; };
      };
    };

    # topicbar
    topic = {
      type = "root";
      placement = "top";
      position = "1";
      visible = "always";
      items = {
        topicbarstart = { priority = "100"; };
        topic = { };
        topic_empty = { };
        topicbarend = { priority = "100"; alignment = "right"; };
      };
    };
    awl_0 = {
      items = {
        barstart = { priority = "100"; };
        awl_0 = { };
        barend = { priority = "100"; alignment = "right"; };
      };
    };
  };
};

settings = {
  core = {
    real_name = "neolao";
    user_name = "neolao";
    nick = "neolao";
    timestamp_format = "%d/%m/%Y %H:%M:%S";
    log_create_mode = "644";
  };
  "fe-text" = { actlist_sort = "refnum"; };
  proxy = {
    irssiproxy_password = "prout";
    irssiproxy_ports = "freenode=2779 worldnet=2778";
  };
  "fe-common/core" = {
    theme = "revolutionary";
    term_charset = "utf-8";
    autolog = "yes";
    autolog_path = "~/irclogs/$tag/$0/%Y-%m-%d.log";
  };
  "irc/dcc" = {
    dcc_autoget = "yes";
    dcc_download_path = "/home/neolao/download";
  };
};
hilights = (
  { text = "neolao.*"; nick = "yes"; word = "yes"; },
  { text = "neolao"; nick = "yes"; word = "yes"; }
);

windows = {
  1 = { immortal = "yes"; name = "(status)"; level = "ALL"; };
  2 = { name = "hilight"; sticky = "yes"; };
  3 = {
    items = (
      {
        type = "CHANNEL";
        chat_type = "IRC";
        name = "#openweb";
        tag = "freenode";
      }
    );
  };

};
mainwindows = {
  1 = { first_line = "7"; lines = "30"; };
  2 = { first_line = "1"; lines = "6"; };
};
logs = { };