diff options
| author | Craig Jennings <c@cjennings.net> | 2026-02-11 17:49:32 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-02-11 17:49:32 -0600 |
| commit | f3d4e26aa16d29bea2cca97f6b50f304642ca6ba (patch) | |
| tree | f2f20f658bf2f3c0017f58262c41de8dd194c991 /dotfiles | |
| parent | 8a85e50809de20cbf4c90a3c61349af0999cb0c1 (diff) | |
| download | archsetup-f3d4e26aa16d29bea2cca97f6b50f304642ca6ba.tar.gz archsetup-f3d4e26aa16d29bea2cca97f6b50f304642ca6ba.zip | |
feat(waybar): add day abbreviation to world clock tooltip
Diffstat (limited to 'dotfiles')
| -rwxr-xr-x | dotfiles/hyprland/.local/bin/waybar-worldclock | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
