diff options
| -rw-r--r-- | config/waybar/config.jsonc | 3 | ||||
| -rw-r--r-- | config/waybar/style.css | 25 |
2 files changed, 25 insertions, 3 deletions
diff --git a/config/waybar/config.jsonc b/config/waybar/config.jsonc index eab73b0..c7fd846 100644 --- a/config/waybar/config.jsonc +++ b/config/waybar/config.jsonc @@ -171,6 +171,9 @@ "spacing": 5, "icons": { "bitwarden": "/home/rbdr/.local/share/icons/Iconoir/pentagon.png", + "signal desktop": "/home/rbdr/.local/share/icons/Iconoir/hexagon.png", + "mullvad vpn": "/home/rbdr/.local/share/icons/Iconoir/rhombus.png", + "Betterbird-systray-icon": "/home/rbdr/.local/share/icons/Iconoir/rhombus.png", } } } diff --git a/config/waybar/style.css b/config/waybar/style.css index 64600b4..8a2b108 100644 --- a/config/waybar/style.css +++ b/config/waybar/style.css @@ -37,8 +37,10 @@ button:hover { } #workspaces button:hover { - color: #fff; - background-color: #4F8FE6; + color: #FFFFFA; + background: #4F8FE6; + box-shadow: inherit; + text-shadow: inherit; } #workspaces button.active { @@ -47,10 +49,13 @@ button:hover { } #workspaces button.urgent { - padding: 0 5px; background-color: #FA2B00; } +#workspaces button.inactive { + color: #ccc; +} + #clock, #battery, #bluetooth, @@ -199,3 +204,17 @@ menu separator { background-color: #FA2B00; color: #DAE6E3; } + +tooltip { + background-color: #FAED8F; + border-radius: 4; + color: #0F261F; + text-shadow: none; + border: none; + box-shadow: none; + margin: 0; +} + +tooltip * { + color: #0F261F; +} |