No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
[[Tilde.chat|<- Back to tilde.chat]] | |||
Weechat is a terminal IRC client. | Weechat is a terminal IRC client. | ||
Line 6: | Line 8: | ||
* https://github.com/weechat/weechat | * https://github.com/weechat/weechat | ||
If you want to run | If you want to run IRC on your tilde account, you can use weechat which is installed and requires minimal configuration. | ||
== First connection == | == First connection == | ||
Line 22: | Line 23: | ||
(If you didn’t choose a username that is unique in the tilde network, you had kind of bad luck.) | (If you didn’t choose a username that is unique in the tilde network, you had kind of bad luck.) | ||
== Register == | == Register == | ||
You now can register your username using your tilde email address as described here: [[Tilde.chat/Nicks and Accounts|intro to nicks]] | You now can register your username using your tilde email address as described here: [[Tilde.chat/Nicks and Accounts|intro to nicks]] | ||
== Setting login credentials == | == Setting login credentials == | ||
Line 47: | Line 46: | ||
<pre>/connect tilde</pre> | <pre>/connect tilde</pre> | ||
== What now == | == What now == | ||
Latest revision as of 16:11, 6 August 2024
Weechat is a terminal IRC client.
Links
- https://weechat.org
- https://weechat.org/files/doc/stable/weechat_user.en.html
- https://github.com/weechat/weechat
If you want to run IRC on your tilde account, you can use weechat which is installed and requires minimal configuration.
First connection
Start weechat on your linux shell and type the following commands:
/server add tilde irc.tilde.chat/6697 -tls /connect tilde
If you are using weechat 3.x, the command uses -ssl instead of -tls.
This will connect you to the irc network via a secure connection. The username used is your linux account, this has to be unique, if someone else registered your name already and is online you will be called username1 or similar, then you should choose another nickname. You do that with
/nick newusername
(If you didn’t choose a username that is unique in the tilde network, you had kind of bad luck.)
Register
You now can register your username using your tilde email address as described here: intro to nicks
Setting login credentials
After you have done that, you can set the username and password in the weechat settings to automatically log in and authenticate
/set irc.server.tilde.sasl_username <username> /set irc.server.tilde.sasl_password <password>
Or to store the password securely (which is preferred), you can use secure settings like this
/secure passphrase <passphrase> /secure set tilde_password <password> /set irc.server.tilde.sasl_password "${sec.data.tilde_password}"
Then the client will ask you for the passphrase when starting.
Now disconnect and connect again to get your registered nickname
/quit
run weechat again and then connect with
/connect tilde
What now
Now you can join any channel, e.g. #helpdesk
You can set various parameters, e.g. to set your real name displayed in /whois you can use
/set irc.server.tilde.realname "My real name"
You can join multiple channels with /j #channel or start private conversations with /msg nickname and navigate between the different windows with Control-n and Control-p
To automatically connect to the tilde server on startup use
/set irc.server.tilde.autoconnect on
For more information about weechat, see the manual