mirror of
https://github.com/tiyn/wiki.git
synced 2025-04-04 07:47:45 +02:00
suckless: added ii guide
This commit is contained in:
parent
a82bd98412
commit
294689ba92
41
wiki/suckless/ii.md
Normal file
41
wiki/suckless/ii.md
Normal file
@ -0,0 +1,41 @@
|
||||
# II
|
||||
|
||||
ii is a suckless tool for the internet relay chat.
|
||||
`<>` indicated placeholders.
|
||||
|
||||
## Join a server
|
||||
|
||||
On most servers `ssl` is required.
|
||||
So you need the `ssl` patch and use `-e` instead of `-p`.
|
||||
|
||||
```shell
|
||||
ii -n <nick> -s <server> -e 9999 &
|
||||
(sleep 2 &&
|
||||
echo "/msg NickServ REGISTER `<password>` `<mail>`" > ~/irc/<server>/nickserv/in &)
|
||||
#(sleep 2 &&
|
||||
#echo "/msg NickServ IDENTIFY `<password>`" > ~/irc/<server>/nickserv/in &)
|
||||
```
|
||||
|
||||
## Join a channel
|
||||
|
||||
```shell
|
||||
echo "/join <channel-name>" > ~/irc/<server>/in &
|
||||
```
|
||||
|
||||
## Show channel
|
||||
|
||||
```shell
|
||||
tail -f -n 500 \<channel>/out
|
||||
```
|
||||
|
||||
## Write into channel
|
||||
|
||||
```shell
|
||||
echo "\msg <message>" > ~/irc/<server>/<channel>/in
|
||||
```
|
||||
|
||||
## Write private message
|
||||
|
||||
```shell
|
||||
echo "\msg <recipient> <message>" > ~/irc/<server>/<channel>/in
|
||||
```
|
@ -31,3 +31,11 @@ new `feature`
|
||||
- If not created already create a `config` branch from the `base` branch
|
||||
- Get the `config.def.h` of `master` into `config` with
|
||||
`git checkout master config.def.h`
|
||||
|
||||
## Programs
|
||||
|
||||
- dmenu is a menu with prgram launcher functionality
|
||||
- dwm is a window manager
|
||||
- [ii](ii.md) is an IRC client
|
||||
- slock is a screen locker
|
||||
- st is a terminal
|
Loading…
x
Reference in New Issue
Block a user