rust-libnotify/examples/show.rs

10 lines
209 B
Rust

extern crate libnotify;
fn main() {
let n = {
let notify = libnotify::Context::new("hello").unwrap();
notify.new_notification("Hello, ", "World!").unwrap()
};
n.show().unwrap();
}