diff --git a/src/helper.rs b/src/helper.rs index ecd9b90..454f983 100644 --- a/src/helper.rs +++ b/src/helper.rs @@ -9,7 +9,7 @@ pub fn run_path() -> String { } pub fn send_notifictation(msg: &str) { - match Notification::new().summary("󰀠 Timers").body(msg).show() { + match Notification::new().summary("󰀠 Timers").body(msg).urgency(notify_rust::Urgency::Critical).show() { Ok(_) => println!("Sent notification sucessfully."), Err(_) => println!("Failed to send notification."), };