Signal Messenger client for terminal.
You need to download and install signal-cli
, such that it is found in your PATH
.
- Download and install
signal-cli
- Follow the instructions at
https://github.com/AsamK/signal-cli/wiki/Linking-other-devices-(Provisioning) to link
signal-cli
to your phone/device. - Install gurk with
cargo install gurk
- Drop the config file in your
$HOME
folder. For more config options, seesrc/config.rs
.[user] name = "Your user name" phone_number = "Your phone number used in Signal"
- Run
gurk
At the first run, gurk
will sync groups and contacts.
- Use a simple database (like sqlite, sled, leveldb) for storing messages, contacts, etc... instead of a JSON file.
- Add optional Gnome notifications over dbus.
- Add scrolling of messages.
- Add reply functionality to a single message.
- Add mouse navigation.
- Add search of messages/chats. Add quick switch between chats by name.
- It is not possible to send multiline messages, since the
Enter
key sends the messages. Add a shortcut or a mode for typing multiline messages. - Add sending of attachments.
- Add support for blocked contacts/groups.
The communication with the Signal backend is implemented via signal-cli
. It provides some
funtionality like lookup of group/contact name only over the dbus interface. Therefore, gurk
only
works on Linux. We should evaluate if it is possible to switch to the libsignal-service-rs
crate.
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT License (LICENSE-MIT or http://opensource.org/licenses/MIT)
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this document by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.