Add UTC time to work clock

This commit is contained in:
Bill Thiede 2025-01-23 12:30:43 -08:00
parent b21a06b622
commit 3b2c74c01e

View File

@ -73,6 +73,8 @@ fn main() {
},
]);
bar.push(dt);
let dt_utc = DateTimeWidget::tz("UTC %H:%M", chrono::offset::Utc);
bar.push(dt_utc);
// Then start updating the status bar
bar.update_loop(I3Protocol::new(Header::new(1), std::io::stdout()));