https://github.com/fastshift/notifier-rust
Custom notification tool based on rust
https://github.com/fastshift/notifier-rust
Last synced: 9 months ago
JSON representation
Custom notification tool based on rust
- Host: GitHub
- URL: https://github.com/fastshift/notifier-rust
- Owner: FASTSHIFT
- License: mit
- Created: 2025-06-10T04:32:30.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-06-10T05:08:08.000Z (11 months ago)
- Last Synced: 2025-06-10T05:28:26.620Z (11 months ago)
- Language: Rust
- Size: 0 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Notifier-rust
Custom notification tool based on rust
## Clone the repository
```
https://github.com/FASTSHIFT/Notifier-rust.git
```
## Build the project
```
cargo build --release
```
## Run the tool
```
./target/release/Notifier
```
Use the `-c` and `-d` options to customize the configuration and duration of the notifications.
```
./target/release/Notifier -c -d
```
to customize parameters.
## Send notifications
Create a configuration file in the `/tmp` directory with the following content:
```
echo -e "[notification]\nsummary = This is the title of the notification\nbody = This is the content of the notification\nsound_file = /usr/share/sounds/freedesktop/stereo/complete.oga" > /tmp/notification-rust.ini
```