States - Alexays/Waybar GitHub Wiki
- Some modules support 'states' which allows percentage values to be used as styling triggers to apply a class when the value matches the declared state value.
- Every entry (state) consists of a
<name>
(typeof:string
) and a<value>
(typeof:integer
).- The
<value>
determines the percentage value above which a state is applied, except for the battery and pulseaudio modules, for which it is activated below the given value. - The state can be addressed as a CSS class in the
style.css
. The name of the CSS class is the<name>
of the state. - Also each state can have its own
format
. Those can be configured viaformat-<name>
. Or if you want to differentiate a bit more even asformat-<status>-<state>
. For more information see custom formats.
- The
"battery": {
"bat": "BAT2",
"interval": 60,
"states": {
"warning": 30,
"critical": 15
},
"format": "{capacity}% {icon}",
"format-icons": ["", "", "", "", ""],
"max-length": 25
}
-
#battery.<state>
-
<state>
can be defined in theconfig
. For more information seestates
-
#battery.warning: { background: orange; }
#battery.critical: { background: red; }