Come configuro irssi?


62

Sto usando il client irssi per la chat IRC e vorrei sapere come configurare il ~/.irssi/configfile in modo da poter inserire il mio nome utente e password (ho un Nick registrato nell'IRC). Inoltre vorrei sapere se posso configurarlo per aprire più terminali (come nelle finestre di gnome-terminal) per connettersi a canali diversi come #ubuntu , # ubuntu-in e così via. O dovrei alias il comando con parametri diversi in modo da connettermi a canali diversi da terminali diversi.


1
È preferibile se puoi pubblicare domande separate invece di combinare le tue domande in una sola. In questo modo, aiuta le persone a rispondere alla tua domanda e anche gli altri a cercare almeno una delle tue domande. Grazie!
Guntbert,

Risposte:


81

Hai fatto molte domande in una, ma ti aiuterò con il maggior numero possibile.

Innanzitutto, devi aggiungere il tuo server IRC preferito - avvia irssi e digita quanto segue:

/server add -auto -network Freenode irc.freenode.net 6667

Ciò aggiungerà la rete IRC Freenode alla tua configurazione IRSSI e si connetterà automaticamente quando eseguirai irssi.

/network add -nick <your-nick> Freenode

Ciò aggiungerà il tuo nick alla nuova Freenoderete e lo utilizzerà automaticamente ogni volta che ti connetti alla rete.

/channel add -auto #ubuntu Freenode

Ciò ti farà entrare #ubuntusu Freenode ogni volta che esegui irssi.

Supponendo che tu abbia il tuo nick registrato, puoi farlo per identificare automaticamente:

/network add -autosendcmd "/msg nickserv identify password ;wait 2000" Freenode

È possibile passare da un canale all'altro con Alt- 2, Alt- 3, ecc., Con ciascun canale Alt-Number

Se sei interessato, ecco il mio ~/.irrsi/configfile:

servers = (
  { address = "irc.ubuntu.com"; chatnet = "Ubuntu"; port = "8001"; },
  #There is actually very little difference between irc.ubuntu.com
  # and irc.freenode.net - irc.u.c is just a redirect
  {
    address = "irc.freenode.net";
    chatnet = "Freenode";
    port = "6667";
    use_ssl = "no";
    ssl_verify = "no";
    autoconnect = "yes";
  }
);
# I'm a freenode user all the way man
chatnets = {
  Freenode = {
    type = "IRC";
    nick = "changeme";
    autosendcmd = "/msg nickserv identify <password removed> ;wait 2000";
  };
};

# Channels I hang out in a lot. Change these to your own.
channels = (
  { name = "#2buntu"; chatnet = "Freenode"; autojoin = "yes"; },
);

aliases = {
  J = "join";
  WJOIN = "join -window";
  WQUERY = "query -window";
  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";
  N = "names";
  M = "msg";
  T = "topic";
  C = "clear";
  CL = "clear";
  K = "kick";
  KB = "kickban";
  KN = "knockout";
  BANS = "ban";
  B = "ban";
  MUB = "unban *";
  UB = "unban";
  IG = "ignore";
  UNIG = "unignore";
  SB = "scrollback";
  UMODE = "mode $N";
  WC = "window close";
  WN = "window new hide";
  SV = "say Irssi $J ($V) - http://irssi.org/";
  GOTO = "sb goto";
  CHAT = "dcc chat";
  RUN = "SCRIPT LOAD";
  CALC = "exec - if command -v bc >/dev/null 2>&1\\; then printf '%s=' '$*'\\; echo '$*' | bc -l\\; else echo bc was not found\\; fi";
  SBAR = "STATUSBAR";
  INVITELIST = "mode $C +I";
  Q = "QUERY";
  "MANUAL-WINDOWS" = "set use_status_window off;set autocreate_windows off;set autocreate_query_level none;set autoclose_windows off;set reuse_unused_windows on;save";
  EXEMPTLIST = "mode $C +e";
  ATAG = "WINDOW SERVER";
  UNSET = "set -clear";
  RESET = "set -default";
};

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}";
    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 = " Irssi v$J - http://www.irssi.org";

    # 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"; };
      };
    };
  };
};
settings = {
  core = { real_name = "Unknown"; user_name = "<your_user_name>"; nick = "<your_nick>"; };
  "fe-text" = { actlist_sort = "refnum"; };
};

Se sei qualcuno a cui piace aggiungere ogni sorta di funzionalità interessante, allora dovresti dare un'occhiata al sito degli script irssi - ci sono tutti i tipi di piccole gemme lì.


Grazie per la risposta rapida. Risposta fantastica! Totalmente funzionante e mi ha aiutato a capire meglio anche i comandi irssi!
Nitin Venkatesh,

@nitstorm Prego! Felice di aiutare. :)
jrg

Come si fa? Non riesco a usare il comando msg in Irssi :(
lampione

1
@streetlight Faccio solo "/ msg nome utente" e si apre una nuova scheda.
giovedì

Scusa, sì, aiuta. Non ho ancora capito il sistema Windows. Grazie!
lampione

7

Se inizi irssiin Ubuntu, crea un file di configurazione predefinito che ~/.irssi/configcontiene già i tuoi dati presi dal sistema (nick e ident impostati sul tuo nome utente e nome reale sul tuo nome completo).

Esiste già la connessione alla rete freenode, basta scrivere /connect Ubuntu, quindi /join #ubuntue ripetere per altri canali preferiti.

È possibile passare da un canale all'altro con Alt- 2, Alt- 3, ecc.

Puoi cambiare nick con /nick nitstormuna volta connesso al server o cambiare globalmente, eseguendo il comando /set nick nitstorm, quindi /savemodificare permanentemente il tuo file di configurazione. Allo stesso modo in cui puoi cambiare real_namee user_namecon /set.

È possibile aggiungere canali di unione automatica con

/channel add -auto #ubuntu Ubuntu

(vedi /help channelaiuto).

È inoltre possibile modificare manualmente il file di configurazione, ma è meglio eseguire comandi per modificarlo all'interno di irssi, quindi salvare la configurazione.

Concludete la sessione con /quit.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.