bumblebee-status/bumblebee/themes/default.json
Tobias Witek 97273b5a41 [themes] Add state-dependent themeing
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.
2016-10-31 07:34:43 +01:00

19 lines
211 B
JSON

{
"defaults": {
"prefix": " ",
"suffix" : " "
},
"battery": {
"prefix": "bat ",
"states": {
"charging": {
"suffix": "+"
},
"discharging": {
"suffix": "-"
}
}
},
"time": {
}
}