From 4f94e42cde2be49552bf297fb0ecfb4b2a98d841 Mon Sep 17 00:00:00 2001 From: tslil clingman <> Date: Tue, 24 Sep 2024 18:02:33 -0400 Subject: [waybar] track config --- waybar/style.css | 103 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 waybar/style.css (limited to 'waybar/style.css') diff --git a/waybar/style.css b/waybar/style.css new file mode 100644 index 0000000..f12cc79 --- /dev/null +++ b/waybar/style.css @@ -0,0 +1,103 @@ +* { + /* `otf-font-awesome` is required to be installed for icons */ + font-family: Berkeley Mono; + font-size: 28px; + padding-top: 2px; + padding-bottom: 0px; +} + +window#waybar { + background-color: black; + color: #ffffff; +} + +button { + /* Use box-shadow instead of border so the text isn't offset */ + box-shadow: inset 0 -3px transparent; + /* Avoid rounded borders under each button name */ + border: none; + border-radius: 0; +} + +#tags button{ + padding: 0 8px; +} + +#tags button.occupied { + color: #FF8C00; +} + +#tags button:hover { + background: #FF8; +} + +#tags button.focused { + padding: 0 8px; + background-color: #FF8C00; + color: black; +} + +#window { + padding: 0px 16px; + background-color: #FF8C00; + color: black; +} + +#tags button.urgent { + background-color: #eb4d4b; +} + +#tray, +#clock { + padding-left: 8px; + background-color: black; + color: #FF8C00; +} + +#layout, +#battery, +#temperature, +#backlight, +#network, +#pulseaudio, +#wireplumber { + padding-right: 8px; + padding-left: 8px; + border-right: 2px solid #FF8C00; + background-color: black; + color: #FF8C00; +} + +label:focus { + background-color: #000000; +} + +#tray > .passive { + -gtk-icon-effect: dim; +} + +#tray > .needs-attention { + -gtk-icon-effect: highlight; + background-color: #eb4d4b; +} + +#privacy { + padding: 0; +} + +#privacy-item { + padding: 0 5px; + color: white; +} + +#privacy-item.screenshare { + background-color: #cf5700; +} + +#privacy-item.audio-in { + background-color: #1ca000; +} + +#privacy-item.audio-out { + background-color: #0069d4; +} -- cgit v1.2.3