From 054068a20564d1539199b16f2edb9c1789f82042 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pankowski?= Date: Sat, 17 Feb 2024 22:33:44 +0100 Subject: [PATCH] waybar: underline active workspace --- hyprland/.config/waybar/style.css | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/hyprland/.config/waybar/style.css b/hyprland/.config/waybar/style.css index 8ba16a3..410b5e2 100644 --- a/hyprland/.config/waybar/style.css +++ b/hyprland/.config/waybar/style.css @@ -11,12 +11,23 @@ #workspaces button { padding: 0 3px; + border-radius: 0; + border-bottom: 3px solid transparent; } #workspaces button.active { - background-color: #7b899d; + border-bottom: 3px solid #7b899d; +} + +#workspaces button.urgent { + border-bottom: 3px solid #a65959; +} + +#window { + border-bottom: 3px solid transparent; } #clock { padding: 0 1rem; + border-bottom: 3px solid transparent; }