diff options
author | lxf <sng@luxagraf.net> | 2020-12-26 12:55:28 -0500 |
---|---|---|
committer | lxf <sng@luxagraf.net> | 2020-12-26 12:55:28 -0500 |
commit | fc68b5e61bc3cacb4dcfa034ab6db8af41352747 (patch) | |
tree | 1adf70de9f8a0823a568c500cd5201462cfa9d8e | |
parent | 0ff42ec1eba3095f93b3c22685d74b24d527ab17 (diff) |
added a calendar to hovering over the waybar time
-rw-r--r-- | .config/waybar/config | 8 | ||||
-rw-r--r-- | .config/waybar/style.css | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/.config/waybar/config b/.config/waybar/config index 49be1fd..e379c02 100644 --- a/.config/waybar/config +++ b/.config/waybar/config @@ -13,9 +13,9 @@ "disable-scroll": true }, "clock": { - "format": "{:%a %b %d %H:%M}", - "tooltip": false, - "on-click": "~/./bin/cal.sh" + "format": "{:%a, %b %d | %H:%M}", + "tooltip": true, + "tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>", }, "battery": { "format": "| {capacity}% {icon} | ", @@ -109,6 +109,6 @@ "format": "{used:0.1f}G/{total:0.1f}G | " }, "tray": { - "icon-size": 16 + "icon-size": 14 } } diff --git a/.config/waybar/style.css b/.config/waybar/style.css index d388c99..e05c395 100644 --- a/.config/waybar/style.css +++ b/.config/waybar/style.css @@ -46,7 +46,7 @@ window#waybar.solo { } #clock { - margin: 0px 16px 0px 10px; + margin: 0px 4px 0px 6px; min-width: 140px; } |