diff options
Diffstat (limited to '.config/waybar')
| -rw-r--r-- | .config/waybar/config | 1 | ||||
| -rw-r--r-- | .config/waybar/style.css | 12 |
2 files changed, 10 insertions, 3 deletions
diff --git a/.config/waybar/config b/.config/waybar/config index c6ec0e0..532109d 100644 --- a/.config/waybar/config +++ b/.config/waybar/config @@ -16,6 +16,7 @@ }, "custom/brightness": { "exec": "get-brightness-percentage", + "interval": 1, "format": "{} ", }, "network": { diff --git a/.config/waybar/style.css b/.config/waybar/style.css index bfa642d..7e9c40e 100644 --- a/.config/waybar/style.css +++ b/.config/waybar/style.css @@ -8,7 +8,7 @@ window#waybar { background-color: rgba(13, 27, 42, 0.5); color: rgba(228, 228, 239, 1); - border: 1px solid rgba(238, 171, 196, 0.8); + border: 2px solid rgba(238, 171, 196, 0.8); border-radius: 10px; } @@ -36,13 +36,13 @@ window#waybar { /* background-color: #2a3f38; */ /* background-color: rgba(51, 102, 0, 0.5); */ /* margin: 0 0 0 2px; */ - /* padding: 0 3px 0 0; */ + padding: 0 0 0 15px; } tooltip { background-color: rgba(13, 27, 42, 1); color: rgba(228, 228, 239, 1); - border: 1px solid rgba(238, 171, 196, 0.8); + border: 2px solid rgba(238, 171, 196, 0.8); border-radius: 10px; } @@ -57,6 +57,7 @@ tooltip { #workspaces button.active { color: rgba(238, 171, 196, 0.8); + transition: all 150ms ease; } #workspaces button:hover { @@ -64,6 +65,11 @@ tooltip { border-color: rgba(238, 171, 196, 0.8); box-shadow: none; text-shadow: none; + transition: all 150ms ease; +} + +#workspaces button:not(:last-child) { + transition: all 150ms ease; } #network, |
