diff options
| author | Blake Romero <blake@blkrom.com> | 2025-07-17 12:34:54 +0100 |
|---|---|---|
| committer | Blake Romero <blake@blkrom.com> | 2025-07-17 12:34:54 +0100 |
| commit | e3be4508a9b8a2f005023a70fcf1742175718c60 (patch) | |
| tree | 460716eeefa3f69b80f96da30b9b6a8b3f291698 | |
| parent | 4cb5564e5d27bc6844e0f8e10b48aad52db15ef0 (diff) | |
Update yambar clock module to use more icons
| -rwxr-xr-x | dot-config/yambar/config.yml | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/dot-config/yambar/config.yml b/dot-config/yambar/config.yml index 3a4da15..ae61762 100755 --- a/dot-config/yambar/config.yml +++ b/dot-config/yambar/config.yml @@ -138,7 +138,37 @@ network: &network clock: &clock time-format: "%R" content: - string: {text: "{time} ", margin: *margin, foreground: *blue} + map: + margin: *margin + foreground: *blue + conditions: + default: {string: {text: "{time}"}} + # AM + time < "01:00": {string: {text: "{time} "}} + time < "02:00": {string: {text: "{time} "}} + time < "03:00": {string: {text: "{time} "}} + time < "04:00": {string: {text: "{time} "}} + time < "05:00": {string: {text: "{time} "}} + time < "06:00": {string: {text: "{time} "}} + time < "07:00": {string: {text: "{time} "}} + time < "08:00": {string: {text: "{time} "}} + time < "09:00": {string: {text: "{time} "}} + time < "10:00": {string: {text: "{time} "}} + time < "11:00": {string: {text: "{time} "}} + time < "12:00": {string: {text: "{time} "}} + # PM + time < "13:00": {string: {text: "{time} "}} + time < "14:00": {string: {text: "{time} "}} + time < "15:00": {string: {text: "{time} "}} + time < "16:00": {string: {text: "{time} "}} + time < "17:00": {string: {text: "{time} "}} + time < "18:00": {string: {text: "{time} "}} + time < "19:00": {string: {text: "{time} "}} + time < "20:00": {string: {text: "{time} "}} + time < "21:00": {string: {text: "{time} "}} + time < "22:00": {string: {text: "{time} "}} + time < "23:00": {string: {text: "{time} "}} + time < "24:00": {string: {text: "{time} "}} date: &date date-format: "%a %b %d" |
