From bee2189ae5ad2169029a8836e31406281afe3dd0 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Wed, 5 Mar 2025 17:20:08 -0800 Subject: [PATCH] work: add Amsterdam time --- src/bin/work.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/bin/work.rs b/src/bin/work.rs index 96914d3..89f0222 100644 --- a/src/bin/work.rs +++ b/src/bin/work.rs @@ -27,9 +27,8 @@ fn main() { // Realtime read/write rate for a any active disks bar.push(AllDiskSpeedWidget::new(6)); - /* - // Setup time in London widget with end of day warnings - let mut dt = DateTimeWidget::tz("%H:%M %Z", chrono_tz::Europe::London); + // Setup time in Amsterdam widget with end of day warnings + let mut dt = DateTimeWidget::tz("%H:%M %Z", chrono_tz::Europe::Amsterdam); dt.set_colors(vec![ TimeColor { start: NaiveTime::from_hms_opt(0, 0, 0).unwrap(), @@ -49,7 +48,6 @@ fn main() { }, ]); bar.push(dt); - */ bar.push(VolumeWidget::new("default", "Master", 0));