3.6 KiB
Weechat
General
You can move the location of the config folder by setting the enviroment variable WEECHAT_HOME
.
If you have a similar setup to mine, adding
export WEECHAT_HOME="${XDG_CONFIG_HOME:-$HOME/.config}/weechat"
should do the trick.
Matrix Support:
We are using this python plugin to achieve matrix connections via a TUI. A rust version is in developement, but not as feature rich yet.
Installation
sudo pacman -S libolm
git clone https://github.com/poljar/weechat-matrix
cd weechat-matrix
pip install -r requirements.txt
make install
Configuration
Connecting
Configuration is completed primarily through the Weechat interface. First start Weechat, and then issue the following commands:
- Start by loading the Weechat-Matrix script:
/script load matrix.py
- Add your custom server to the script:
/matrix server add myserver myserver.org
- Add the appropriate credentials
/set matrix.server.myserver.username johndoe
/set matrix.server.myserver.password jd_is_awesome
- Now try to connect:
/matrix connect myserver
- Automatically load the script
cd $WEECHAT_HOME/python/matrix
ln -s ../matrix.py $WEECHAT_HOME/python/autoload
- Automatically connect to the server
/set matrix.server.myserver.autoconnect on
- If everything works, save the configuration
/save
Note how this allows you to connect to multiple matrix servers simultaneously in the same weechat instance.
Verify session
- Figure out the session ID of a device you want to use for interactive verification. Either
/olm info all
(/olm
needs to be executed in a matrix chat. Don't worry the other person will not receive a message). You can also find your session ID in Element underSettings -> Security & Privacy -> Session ID
- In Weechat in a matrix chat, type:
Note how weechat has tab-completion here./olm verification start <your_username> <session ID of other device>
- If the other session is an Element session you should see a notification pop-up requesting a verification. Accept this
- Verify that the emojis match on both devices. In weechat these get displayed in the
1.weechat
room - If they do, confirm in the other session and then in weechat using
/olm verification accept <your_username> <session ID of other device>
- Your session should now be verified.
Importing Encryption keys
To get old messages decryped faster, it is reccomended to import encryption keys manually.
- Export Encryption keys in Element via
Settings -> Security & Privacy -> Cryptography -> Export E2E room keys
. If you're not backing up these encryption keys the password does not need to be complex. - In weechat, import them via
/olm import <file> <password>
Note that relative paths start atWEECHAT_HOME
, notHOME
. - delete previously exported encryption keys
libnotify Notification support
Should work straight out of the box.
cd $WEECHAT_HOME
wget https://raw.githubusercontent.com/s3rvac/weechat-notify-send/master/notify_send.py
cd $WEECHAT_HOME/python/autoload
ln -s ../notify_send.py
to not display old messages as notifications again when opening buffers for the first time since launch:
/set plugins.var.python.notify_send.notify_for_current_buffer off
/save
Keep in mind that this will disable notifications for the current buffer at all times. Move to the first buffer or an irrelevant one to still get reliable notifications
See the gitHub page for more configuration options.