rust-libnotify/examples/show.rs

10 lines
311 B
Rust
Raw Normal View History

extern crate libnotify;
fn main() {
let notify = libnotify::Context::new("hello").unwrap();
2015-03-08 16:14:52 +00:00
let n = notify.new_notification("This is the summary.",
Some("This is the optional body text."),
None).unwrap();
n.show().unwrap();
}