2015-03-07 12:55:19 +00:00
|
|
|
extern crate libnotify;
|
|
|
|
|
|
|
|
fn main() {
|
2017-07-09 23:01:36 +00:00
|
|
|
// Init libnotify
|
2017-07-10 21:21:16 +00:00
|
|
|
libnotify::init("myapp");
|
2015-11-03 09:06:33 +00:00
|
|
|
// Create a new notification and show it
|
2017-07-09 23:09:21 +00:00
|
|
|
let n =
|
2017-07-10 21:21:16 +00:00
|
|
|
libnotify::Notification::new("Summary", Some("Optional Body"), None);
|
2017-07-09 23:01:36 +00:00
|
|
|
// Show the notification
|
2015-11-03 09:06:33 +00:00
|
|
|
n.show().unwrap();
|
|
|
|
// You can also use the .show() convenience method on the context
|
2017-07-09 23:01:36 +00:00
|
|
|
n.update("I am another notification", None, None).unwrap();
|
|
|
|
// Show the update notification
|
|
|
|
n.show().unwrap();
|
|
|
|
// We are done, deinit
|
|
|
|
libnotify::uninit();
|
2015-03-07 12:55:19 +00:00
|
|
|
}
|