Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kamiyaa/tsuchita
client-server notification center for dbus desktop notifications
https://github.com/kamiyaa/tsuchita
cargo client-server dbus desktop-notification hacktoberfest rust termion toml tui-rs
Last synced: 25 days ago
JSON representation
client-server notification center for dbus desktop notifications
- Host: GitHub
- URL: https://github.com/kamiyaa/tsuchita
- Owner: kamiyaa
- License: lgpl-3.0
- Created: 2021-04-29T16:31:03.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-11T17:57:49.000Z (over 3 years ago)
- Last Synced: 2024-08-02T17:36:09.388Z (3 months ago)
- Topics: cargo, client-server, dbus, desktop-notification, hacktoberfest, rust, termion, toml, tui-rs
- Language: Rust
- Homepage:
- Size: 75.2 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ratatui - tsuchita - Client-server notification center for dbus desktop notifications. (💻 Apps / 🌐 Networking and Internet)
README
[![Linux Build](https://github.com/kamiyaa/tsuchita/actions/workflows/rust-linux.yml/badge.svg)](https://github.com/kamiyaa/tsuchita/actions/workflows/rust-linux.yml)
# tsuchita
A client-server notification center for dbus desktop notifications.
Specifically `org.freedesktop.Notifications` dbus messages.
## Motivation
I just want to be able to see missed notifications on a window manager.
## Dependencies
- [cargo](https://github.com/rust-lang/cargo/)
- [rustc](https://www.rust-lang.org/)
- [libdbus](https://www.freedesktop.org/wiki/Software/dbus/)Also see [Cargo.toml](Cargo.toml)
## Building
```
~$ cargo build
```## Installation
#### For single user
```
~$ cargo install --path=. --force
```#### System wide
```
~# cargo install --path=. --force --root=/usr/local # /usr also works
```## Usage
To start the server and listen for dbus notifications:
```
~ $ tsuchita-server
```To start a terminal client that reads notifications from the server
```
~ $ tsuchita
```## Configuration
Place config files inside `$XDG_CONFIG_HOME/tsuchita` (usually `$HOME/.config/tsuchita/` for GNU/Linux).
tsuchita can currently be configured using the following files:
#### [tsuchita.toml](config/tsuchita.toml)
- general configurations
#### [keymap.toml](/config/keymap.toml)
- for keybindings, please take a look at [src/client/util/key_mapping.rs](/src/util/key_mapping.rs) for non-printable keys
- for commands, please take a look at [src/client/commands/commands.rs](/src/commands/command.rs)#### [theme.toml](/config/theme.toml)
- color customizations
## Contributing
Please create a pull request :)
## Features/Bugs
Please create an issue :)
## TODOs
### Server
- [ ] database store
- [ ] CRUD### Terminal Client
- [x] tui interface
- [ ] CRUD### GUI Client
TODO