Compare commits
2 Commits
e3fd65e98b
...
37dc5c727a
Author | SHA1 | Date |
---|---|---|
Moritz Böhme | 37dc5c727a | |
Moritz Böhme | 8912151bdc |
|
@ -9,7 +9,7 @@ pub fn run_path() -> String {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn send_notifictation(msg: &str) {
|
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."),
|
Ok(_) => println!("Sent notification sucessfully."),
|
||||||
Err(_) => println!("Failed to send notification."),
|
Err(_) => println!("Failed to send notification."),
|
||||||
};
|
};
|
||||||
|
|
|
@ -34,7 +34,7 @@ impl Timer {
|
||||||
|
|
||||||
/// Returns `true` if this [`Timer`] has expired
|
/// Returns `true` if this [`Timer`] has expired
|
||||||
pub fn is_expired(&self) -> bool {
|
pub fn is_expired(&self) -> bool {
|
||||||
let expired = Instant::now() - self.start > self.duration;
|
let expired = self.remaining().is_zero();
|
||||||
if expired {
|
if expired {
|
||||||
self.handle_expiration()
|
self.handle_expiration()
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue