Shows desktop notifications. This implementation does not rely on libnotify, as it is using dbus-rs. Basic notification features are supported, more sophisticated functionality will follow. The API shown below should be stable.
```toml
[dependencies] notify-rust = "1.0" ```
please see the documentation for current examples.
Checkout ./notify-cli, it exposes most of the functionality of the lib to the commandline.
``` $ ./target/debug/notify send --help notify-send Shows a notification
USAGE:
notify send [FLAGS] [OPTIONS] [ARGS]
FLAGS: -d, --debug Also prints notification to stdout -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-a, --app-name
ARGS: summary Title of the Notification. body Message body
```