97273b5a41
Module themes (only!) can now contain state-specific theme information - for example, the "battery" module has different states for charging and discharging, and those can have different prefix and postfix configurations to indicate what is going on.
19 lines
211 B
JSON
19 lines
211 B
JSON
{
|
|
"defaults": {
|
|
"prefix": " ",
|
|
"suffix" : " "
|
|
},
|
|
"battery": {
|
|
"prefix": "bat ",
|
|
"states": {
|
|
"charging": {
|
|
"suffix": "+"
|
|
},
|
|
"discharging": {
|
|
"suffix": "-"
|
|
}
|
|
}
|
|
},
|
|
"time": {
|
|
}
|
|
}
|