From 0638e8adb7c0ce2c123cd7ad9f21c64d49c111dd Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Thu, 24 Jul 2025 22:35:41 +0100 Subject: Add waybar config --- dot-config/waybar/style.css | 61 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 dot-config/waybar/style.css (limited to 'dot-config/waybar/style.css') diff --git a/dot-config/waybar/style.css b/dot-config/waybar/style.css new file mode 100644 index 0000000..49ca5af --- /dev/null +++ b/dot-config/waybar/style.css @@ -0,0 +1,61 @@ +* { + font-family: "Hack Nerd Font", "Hack", monospace; + font-size: 12px; + box-shadow: none; +} + +window#waybar { + background-color: #000; + border-bottom: 1px solid #444; + color: #eee; + transition-property: background-color; + transition-duration: .5s; +} + +/* WORKSPACES */ +#workspaces button { + padding: 0 8px; + background-color: transparent; + color: #aaa; + border: 1px solid black; + border-radius: 5px; + margin: 1px 0; +} + +#workspaces button:hover { + background: #fff; + color: #000; + border: 1px solid black; +} + +#workspaces button.focused { + border: 1px solid white; + box-shadow: none; + color: #fff; +} + +#workspaces button.urgent { + background-color: #eb4d4b; +} + + +/* PULSEAUDIO SLIDER */ +#pulseaudio-slider slider { + min-height: 0px; + min-width: 0px; + opacity: 0; + background-image: none; + border: none; + box-shadow: none; +} +#pulseaudio-slider trough { + min-height: 10px; + min-width: 80px; + border-radius: 5px; + background-color: black; +} +#pulseaudio-slider highlight { + min-width: 10px; + border-radius: 5px; + background-color: green; +} -- cgit