waybar/man/waybar-states.5.scd

47 lines
1.2 KiB
Plaintext
Raw Normal View History

2019-08-26 23:49:04 +02:00
waybar-states(5)
# NAME
waybar - states property
2019-08-26 23:49:04 +02:00
# OVERVIEW
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.
# STATES
2022-11-07 08:30:01 +01:00
Every entry (*state*) consists of a *<name>* (typeof: *string*) and a *<value>* (typeof: *integer*).
2019-08-26 23:49:04 +02:00
2022-11-07 08:30:01 +01:00
- 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.
Each class gets activated when the current value is equal to or less than the configured *<value>* for the *battery* module, or equal to or greater than the configured *<value>* for all other modules.
2019-08-26 23:49:04 +02:00
2022-11-07 08:30:01 +01:00
- Also, each state can have its own *format*.
Those can be configured via *format-<name>*, or if you want to differentiate a bit more, as *format-<status>-<state>*.
2019-08-26 23:49:04 +02:00
# EXAMPLE
```
"battery": {
"bat": "BAT2",
"interval": 60,
"states": {
"warning": 30,
"critical": 15
},
"format": "{capacity}% {icon}",
"format-icons": ["", "", "", "", ""],
"max-length": 25
}
```
# STYLING STATES
- *#battery.<state>*
- *<state>* can be defined in the *config*.
# EXAMPLE:
- *#battery.warning: { background: orange; }*
- *#battery.critical: { background: red; }*