22
0
Fork 0

Première version

This commit is contained in:
tpilat 2017-03-20 18:53:37 +01:00
parent 00a88a7e44
commit e6295d1e05
1 changed files with 80 additions and 0 deletions

80
HowtoWeechat.md Normal file
View File

@ -0,0 +1,80 @@
---
title: Howto Weechat
categories: tips
...
* <https://weechat.org/>
* <https://weechat.org/files/doc/stable/weechat_user.fr.html>
**Weechat**
## Installation
Sur Debian :
~~~{.bash}
apt install weechat
~~~
Sur OpenBSD :
~~~{.bash}
pkg_add weechat
~~~
## Configuration rapide
Lancer weechat :
~~~{.bash}
$ weechat
~~~
*Changer son nick, username, realname*
~~~
/set irc.server_default.nicks "foo"
/set irc.server_default.username "foo"
/set irc.server_default.realname "foo bar"
~~~
*Configurer ses highlights*
Mots à «highlighter»
~~~
/set weechat.look.highlight foo,bar
~~~
Couleur des highlights dans les channels
~~~
/set weechat.color.chat_highlight yellow
/set weechat.color.chat_highlight_bg red
~~~
Couleur des highlights dans la bar de status
~~~
/set weechat.color.status_data_highlight red
/set weechat.color.status_data_private red
~~~
*Ajouter des servers avec connexion automatique*
~~~
/server add freenode irc.freenode.net/6667 -autoconnect
~~~
*Ajouter des channels avec connexion automatique*
~~~
/set irc.server.freenode.autojoin "#debian,#openbsd,#evolix"
~~~
*Sauvegarder*
~~~
/save
~~~