notify_send-rs

Send DBus notifications, purely in rust, using dbus-rs.

```toml

Cargo.toml

[dependencies.notifysend] git = "https://github.com/hoodie/notifysend-rs.git" ```

```rust

[macrouse] extern crate notifysend;

use notify_send::*;

fn main() { notifysend!("title1-t", t 5000); notifysend!("title1"); notifysend!("title2", "with message"); notifysend!("title3", "with message and icon", "dialog-ok"); notify_send!("title4", "with message, icon and timeout", "dialog-ok", t 3000); } ```