8 lines
246 B
Rust
8 lines
246 B
Rust
//! Clock module: subscribes to second ticks, renders the time in the bar.
|
|
//! Left-click toggles the seconds suffix; right-click opens a popup with
|
|
//! the current time in large text.
|
|
|
|
mod module;
|
|
|
|
pub use module::{Clock, ClockError, ClockMsg};
|