Tox-WeeChat is a Tox protocol plugin for WeeChat. It is functional, but lacks certain features like Tox DNS.
Below is a list of implemented features, as well as a rough roadmap for the future.
- One-to-one chats
- Group chats (text only)
- Proxy support
- Multiple profiles
- Tox DNS
- Encrypted save files
- File transfer
- Avatars
- WeeChat
/upgrade
- Audio/video
Tox-WeeChat requires WeeChat >= 1.0.1 and the latest-ish toxcore. It also requires CMake to be built. Installation is fairly simple; after getting the source, compile and install using CMake:
$ mkdir build && cd build
$ cmake -DPLUGIN_PATH=~/.weechat/plugins ..
$ make install
This installs the plugin binary tox.so
to the recommended location
~/.weechat/plugins
. The default location is /usr/local/lib/weechat/plugins
.
- If the plugin does not load automatically, load it with
/plugin load tox
. You may have to specify the full path to the plugin binary. - Create a new profile with
/tox create <profile name>
. The data file is stored in~/.weechat/tox/
by default. - Load your profile and connect to the Tox network with
/tox load <profile name>
. - Run
/help -listfull tox
to get a list of all available commands, and/set tox.*
for a list of options.
Tox allows names up to 128 bytes long. To prevent long names from taking all your screen space, you can set the following options in WeeChat:
weechat.bar.nicklist.size_max
weechat.look.prefix_align_max
buffers.look.name_size_max
(if using buffers.pl)
Make sure the proxy type, address and port is correct, and that UDP is
disabled (/set tox.profile.*.udp
).
Copyright (c) 2015 Håvard Pettersson [email protected]
This file is part of Tox-WeeChat.
Tox-WeeChat is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
Tox-WeeChat is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Tox-WeeChat. If not, see http://www.gnu.org/licenses/.