suckless: added ii guide

master
TiynGER 4 years ago
parent a82bd98412
commit 294689ba92

@ -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 - If not created already create a `config` branch from the `base` branch
- Get the `config.def.h` of `master` into `config` with - Get the `config.def.h` of `master` into `config` with
`git checkout master config.def.h` `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…
Cancel
Save