Changeset 765 in code
- Timestamp:
- Jan 13, 2022, 3:06:54 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/contrib/clients.md
r718 r765 4 4 5 5 Also see the [IRCv3 support tables] for a more general list of clients. 6 7 # [Emacs] 8 9 There are two clients provided with Emacs. They require some setup to work 10 properly. 11 12 ## Erc 13 14 You need to explicitly set the username, which is the defcustom 15 `erc-email-userid`. 16 17 ```elisp 18 (setq erc-email-userid "<username>/irc.libera.chat") ;; Example with Libera.Chat 19 (defun run-erc () 20 (interactive) 21 (erc-tls :server "<server>" 22 :port 6697 23 :nick "<nick>" 24 :password "<password>")) 25 ``` 26 27 Then run `M-x run-erc`. 28 29 ## Rcirc 30 31 The only thing needed here is the general config: 32 33 ```elisp 34 (setq rcirc-server-alist 35 '(("<server>" 36 :port 6697 37 :encryption tls 38 :nick "<nick>" 39 :user-name "<username>/irc.libera.chat" ;; Example with Libera.Chat 40 :password "<password>"))) 41 ``` 42 43 Then run `M-x irc`. 6 44 7 45 # [gamja] … … 46 84 [Weechat script]: https://github.com/weechat/scripts/blob/master/python/soju.py 47 85 [Hexchat]: https://hexchat.github.io/ 86 [Emacs]: https://www.gnu.org/software/emacs/
Note:
See TracChangeset
for help on using the changeset viewer.