feat(waybar): fix tag bar styling to show focused, occupied & urgent states

This commit is contained in:
Khaïs COLIN 2024-08-09 09:54:45 +02:00
parent 48c9f796dc
commit 1adb84395b

View file

@ -5,9 +5,28 @@
* { * {
border: none; border: none;
border-radius: 0; border-radius: 0;
padding: 0;
font-family: "VictorMono Nerd Font"; font-family: "VictorMono Nerd Font";
font-size: 10pt; font-size: 10pt;
} }
* {
transition: none;
}
#tags button.focused {
border-top: 2px solid @base05;
border-bottom: 2px solid @base05;
}
#tags button.occupied {
background-color: @base02;
}
#tags button.urgent {
background-color: @base08;
color: @base00;
}
''; '';
settings = { settings = {
mainBar = { mainBar = {