Using weechat matrix

This commit is contained in:
Jose 2023-02-21 15:06:29 -03:00
parent a615da2b53
commit 0eede51a13
2 changed files with 36 additions and 0 deletions

View File

@ -67,6 +67,7 @@ opportunity to learn about computers, files, directories and programs.
** Communication, messengers
* [[./tutorial/weechat.org][Using weechat for matrix with python script 'weechat-matrix']]
** Text edition

35
tutorial/weechat.org Normal file
View File

@ -0,0 +1,35 @@
#+OPTIONS: toc:nil num:nil
* How to use weechat to connect to matrix service
Use the following command to load the `weechat-matrix` script:
#+begin_src bash
/script load weechat-matrix.py
#+end_src
Set up username and password:
#+begin_src bash
/set matrix.server.matrix_org.username usernamehere
/set matrix.server.matrix_org.password passwordhere
#+end_src
Connect to matrix server:
#+begin_src bash
/matrix connect matrix_org
#+end_src
Saving configuration:
#+begin_src bash
/save
#+end_src
** References
- [[https://github.com/poljar/weechat-matrix][weechat-matrix on github]]
- [[https://matrix.org:443/_matrix/client/r0/login/sso/redirect?redirectUrl=http://127.0.0.1:60673
][Quickstart guite matrix]]