From 0ca75534eef514c243b1382bf7928bb07b38bf12 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Wed, 11 Feb 2026 17:49:32 -0600 Subject: feat(waybar): add day abbreviation to world clock tooltip --- dotfiles/hyprland/.local/bin/waybar-worldclock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dotfiles') diff --git a/dotfiles/hyprland/.local/bin/waybar-worldclock b/dotfiles/hyprland/.local/bin/waybar-worldclock index 9801dad..be483ed 100755 --- a/dotfiles/hyprland/.local/bin/waybar-worldclock +++ b/dotfiles/hyprland/.local/bin/waybar-worldclock @@ -12,7 +12,7 @@ if [ -f "$CONF" ]; then while IFS='|' read -r tz label; do # Skip comments and blank lines case "$tz" in \#*|"") continue ;; esac - TIME=$(TZ="$tz" date '+%I:%M %p %Z') + TIME=$(TZ="$tz" date '+%a %I:%M %p %Z') LINE=$(printf "%-16s %s" "$label" "$TIME") # Highlight local timezone in gold if [ "$tz" = "$LOCAL_TZ" ]; then -- cgit v1.2.3