From e13b0d8e54fb145e8a48e24ee8eca5d3a8d94ab0 Mon Sep 17 00:00:00 2001 From: Trysdyn Black Date: Wed, 23 Aug 2023 13:48:36 -0700 Subject: [PATCH] Change waybar clock format Following an update to waybar, the clock starting displaying fractional seconds. Changing seconds from `%S` to `%OS` truncates the fractional second, though this is possibly not portable as `%OS` is "alternative second display" and the definition of "alternative" is vague. --- .config/waybar/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/waybar/config b/.config/waybar/config index cb5339b..be1d26c 100644 --- a/.config/waybar/config +++ b/.config/waybar/config @@ -20,7 +20,7 @@ }, "clock": { "interval": 5, - "format": "{:%a %b %d %H:%M:%S}", + "format": "{:%a %b %d %R:%OS}", "tooltip-format": "{:%Y %B}\n{calendar}", "format-alt": "{:%Y-%m-%d}" },