diff options
| author | Robert Günzler <r@gnzler.io> | 2022-09-28 19:38:24 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2022-09-28 19:38:24 +0200 |
| commit | 3f83b163df74bfe9150a67d7f15d35c366eea9cf (patch) | |
| tree | ef6a59d4f3c17cbf5db086ae062603e48adc5c2d | |
| parent | 2581df979359d66bc2999cd7cd48277b11216f5a (diff) | |
waybar: add extra clock for other timezones
| -rw-r--r-- | .config/waybar/config.jsonc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.config/waybar/config.jsonc b/.config/waybar/config.jsonc index c6c1e80..35146fb 100644 --- a/.config/waybar/config.jsonc +++ b/.config/waybar/config.jsonc @@ -79,7 +79,12 @@ "clock#utc": { "timezone": "UTC", - "format": "({:<small>%Z</small> %H:%M})", + "format": "{:<small>%Z</small> %H:%M}", + "tooltip-format": "{:%Z %z}" + }, + "clock#extra": { + "timezone": "Asia/Kolkata", + "format": "{:<small>%Z</small> %H:%M}", "tooltip-format": "{:%Z %z}" }, |