diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2025-09-13 00:20:42 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2025-09-13 00:20:42 +0530 |
commit | 330328d5ac6c633f117127b64b239631ca28277e (patch) | |
tree | 31be37cfcbc28cf15772c74e69f9bad959747890 /src/daemon/clock.rs | |
parent | a85293cb7e755d5b81676088db205388488763a7 (diff) |
Added notificationsv0.2.0
Diffstat (limited to 'src/daemon/clock.rs')
-rw-r--r-- | src/daemon/clock.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/daemon/clock.rs b/src/daemon/clock.rs index 98ad292..48ddca8 100644 --- a/src/daemon/clock.rs +++ b/src/daemon/clock.rs @@ -62,6 +62,7 @@ pub fn start_clock(rx: Receiver<Command>) -> thread::JoinHandle<()> { Command::SoftReset => p.soft_reset(), Command::HardReset => p.hard_reset(), Command::Reset => p.reset(), + Command::Notify => p.toggle_notify(), } } |