irssi
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
irssi [2011/08/19 14:54] – k2patel | irssi [2020/08/10 02:35] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 44: | Line 44: | ||
/alias figlet exec - -o / | /alias figlet exec - -o / | ||
</ | </ | ||
+ | |||
+ | |||
+ | === From other pages === | ||
+ | |||
+ | |||
+ | remove activity from all windows: | ||
+ | <code bash> | ||
+ | alias UNACT script exec foreach $$w (Irssi:: | ||
+ | </ | ||
+ | |||
+ | calc with (10) decimals: | ||
+ | <code bash> | ||
+ | alias CALC exec – if which bc &>/ | ||
+ | </ | ||
+ | |||
+ | Dump perl object (e.g. /dump Irssi:: | ||
+ | <code bash> | ||
+ | alias DUMP script exec use Data:: | ||
+ | </ | ||
+ | |||
+ | Put output of a command in the current window (e.g. /here help blah) (does not work with whois, and other output coming from the server): | ||
+ | <code bash> | ||
+ | alias HERE script exec \$a=Irssi:: | ||
+ | </ | ||
+ | |||
+ | do /lastlog, but for all windows… /alllast -HILIGHT would show all hilights in every buffer in the current window (like hilightwindow.pl, | ||
+ | <code bash> | ||
+ | alias ALLLASTLOG script exec foreach (Irssi:: | ||
+ | </ | ||
+ | |||
+ | execute a command on a given server (e.g. “/tag ircnet join #irssi” would join irssi on ircnet (if you’re connected to ircnet)): | ||
+ | <code bash> | ||
+ | alias TAG script exec Irssi:: | ||
+ | </ | ||
+ | |||
+ | list (say) your currently loaded scripts (just the names, on one line): | ||
+ | <code bash> | ||
+ | alias LISTSCRIPTS script exec foreach \$s (sort grep(s/:: | ||
+ | </ | ||
+ | |||
+ | list (print) a list of servers you’re currently connected to, what nick you have there, and on which channels you are: | ||
+ | <code bash> | ||
+ | alias LISTCHANS script exec foreach (Irssi:: | ||
+ | </ | ||
+ | |||
+ | mass-op all non-voiced (to op everyone just use /op *): | ||
+ | <code bash> | ||
+ | alias MOP script exec foreach \$n (Irssi:: | ||
+ | </ | ||
+ | |||
+ | Show for how long you have been connected to the current server: | ||
+ | <code bash> | ||
+ | alias CONNECTIONUPTIME script exec \$a=`date +%s` – Irssi:: | ||
+ | </ | ||
+ | |||
+ | Goto to x’th last window (0 = last, 1 = second last) | ||
+ | <code bash> | ||
+ | alias window_goto_last_minus script exec Irssi:: | ||
+ | </ | ||
+ | |||
+ | Remove all bans set by you | ||
+ | <code bash> | ||
+ | alias mubmy script exec \$c=Irssi:: | ||
+ | </ | ||
+ | |||
+ | [[http:// | ||
==== IrSSi Settings ==== | ==== IrSSi Settings ==== | ||
Line 88: | Line 154: | ||
* For faster usage, do “/BIND ^G multi erase_line; | * For faster usage, do “/BIND ^G multi erase_line; | ||
</ | </ | ||
+ | |||
+ | ==== ShortCut' | ||
+ | |||
+ | <code bash> | ||
+ | Ctrl-X to switch between network connections | ||
+ | Alt-[0-9] switch to windows | ||
+ | </ | ||
+ | |||
==== Binding F Key ==== | ==== Binding F Key ==== |
irssi.1313765671.txt.gz · Last modified: 2020/08/10 02:30 (external edit)