Irssi
From ArchWiki
Contents |
Introduction
irssi is a modular, text based (ncurses) IRC client.
Installation
- Simply run as root:
# pacman -S irssi
Configuration
- Configuration is done by editing the config file located at ~/.irssi/config. If you wish you could start irssi with an alternate config file like this:
$ irssi --config=FILE
Installing a Script
- Let's install the spell checking script
- In a terminal
# pacman -Sy ispell $ mkdir -p ~/.irssi/scripts/autorun $ cd ~/.irssi/scripts $ wget http://scripts.irssi.org/scripts/spell.pl . # perl -MCPAN -e 'install Lingua::Ispell' # make sure your are root $ irssi
- If you don't want to use CPAN; http://search.cpan.org/~jdporter/Lingua-Ispell-0.07/lib/Lingua/Ispell.pm
- In irssi
/script load spell.pl
- If it worked, it should look like this:
- - Irssi: Loaded script spell /bind meta-s /_spellcheck
PROTIP: Alt + s will now spell check your current line.
If you want to autorun the script when you start irssi, just link the script into the autorun folder.
$ cd ~/.irssi/scripts/autorun $ ln -s ../spell.pl .