From 5d6d1c6db8b6cb2f9a383e8067a9b26c31dea56f Mon Sep 17 00:00:00 2001 From: nocode Date: Fri, 3 Jul 2026 23:59:58 +0200 Subject: [PATCH] feat(waybar): add waybar style configuration for fws theme Add CSS stylesheet for Waybar that matches the FWS theme, SDDM appearance, and Hyprland borders. Includes styling for workspaces, clock, custom key help button, and system status modules with Catppuccin blue accent color (#89b4fa). --- .../usr/local/share/fws/waybar-style.css | 63 +++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 configs/releng/airootfs/usr/local/share/fws/waybar-style.css diff --git a/configs/releng/airootfs/usr/local/share/fws/waybar-style.css b/configs/releng/airootfs/usr/local/share/fws/waybar-style.css new file mode 100644 index 0000000..6ef916e --- /dev/null +++ b/configs/releng/airootfs/usr/local/share/fws/waybar-style.css @@ -0,0 +1,63 @@ +/* FWS — style Waybar (assorti au thème SDDM et aux bordures Hyprland). */ + +* { + font-family: "Noto Sans", sans-serif; + font-size: 13px; + min-height: 0; +} + +window#waybar { + background: rgba(26, 26, 46, 0.92); /* #1a1a2e */ + color: #f0f0f5; + border-bottom: 2px solid #89b4fa; /* bleu FWS (Catppuccin) */ +} + +#workspaces button { + color: #a0a0b8; + padding: 0 10px; + border: none; + border-radius: 0; + background: transparent; +} + +#workspaces button.active { + color: #f0f0f5; + border-bottom: 2px solid #89b4fa; +} + +#workspaces button:hover { + background: rgba(255, 255, 255, 0.08); + box-shadow: none; +} + +#window { + color: #a0a0b8; + margin-left: 12px; +} + +#clock { + color: #f0f0f5; + font-weight: bold; +} + +#custom-keyhelp { + background: #89b4fa; + color: #1a1a2e; + font-weight: bold; + padding: 0 12px; + margin: 5px 6px; + border-radius: 8px; +} + +#custom-keyhelp:hover { + background: #b4d0fb; +} + +#pulseaudio, +#network, +#cpu, +#memory, +#tray { + color: #a0a0b8; + padding: 0 10px; +}