notifme 0.0.2

A simple notify-send send tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
# notifme
A simple rust lib to send notify-send notfification

```rust
Notification::new()
            .summary("I am the summary")
            .body("i am the body")
            .icon("spot_dwl")
            .send()
```