diff --git a/.config/waybar/config b/.config/waybar/config index ecac831..bd3c98f 100644 --- a/.config/waybar/config +++ b/.config/waybar/config @@ -7,7 +7,8 @@ "interval": 60, "format": "{:%H : %M}", "tooltip-format": "{:%A, %Y-%m-%d}", - "on-click": "date -u +'%Y-%m-%dT%H:%M:%SZ' | wl-copy" + "on-click": "gnome-clocks", + "on-click-right": "date -u +'%Y-%m-%dT%H:%M:%SZ' | wl-copy", }, "cpu": { "interval": 2, @@ -74,9 +75,10 @@ "*": 9 }, "format-icons": { - "urgent": "", + "default": "", + "empty": "", "active": "", - "default": "" + "urgent": "", }, "sort-by-number": true, }, diff --git a/.config/waybar/style.css b/.config/waybar/style.css index 733e317..79d7635 100644 --- a/.config/waybar/style.css +++ b/.config/waybar/style.css @@ -30,14 +30,24 @@ window#waybar.hidden { transition: none; } +#workspaces {} + #workspaces button { padding: 0px 5px; - color: rgba(255, 255, 255, 0.5); + color: rgba(255, 255, 255, 0.4); background: transparent; text-shadow: none; + border-radius: 0; } -#workspaces button:hover, +#workspaces button.empty { + color: rgba(255, 255, 255, 0.2); +} +#workspaces button.visible {} +#workspaces button.urgent {} +#workspaces button.persistent {} +#workspaces button.hidden {} + #workspaces button.active { color: rgba(255, 255, 255, 1.0); }