1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
#![allow(unused_imports)]
use notify_rust::{Hint, Notification};
#[cfg(any(target_os = "windows", target_os = "macos"))]
fn main() {
println!("this is a xdg only feature");
}
#[cfg(all(unix, not(target_os = "macos")))]
fn main() {
Notification::new()
.summary("click me")
.action("default", "default") // IDENTIFIER, LABEL
.action("clicked_a", "button a") // IDENTIFIER, LABEL
.action("clicked_b", "button b") // IDENTIFIER, LABEL
.hint(Hint::Resident(true))
.show()
.unwrap()
.wait_for_action(|action| match action {
"default" => println!("default"),
"clicked_a" => println!("clicked a"),
"clicked_b" => println!("clicked b"),
// FIXME: here "__closed" is a hardcoded keyword, it will be deprecated!!
"__closed" => println!("the notification was closed"),
_ => (),
});
}
|