83bb1deb52
Add functionality to provide lists of values for individual elements of a theme (e.g. the prefix) and those will be cycled for each call. This can be used, for example, to show a "charging" symbol for the battery that continuously goes throw all the battery stages to "animate" the charging icon.
34 lines
1.2 KiB
Python
34 lines
1.2 KiB
Python
import datetime
|
|
import bumblebee.module
|
|
|
|
class Module(bumblebee.module.Module):
|
|
def __init__(self, args):
|
|
super(Module, self).__init__(args)
|
|
self._battery = "BAT0" if not args else args[0]
|
|
self._capacity = 0
|
|
self._status = "Unknown"
|
|
|
|
def data(self):
|
|
with open("/sys/class/power_supply/{}/capacity".format(self._battery)) as f:
|
|
self._capacity = int(f.read())
|
|
|
|
return "{:02d}%".format(self._capacity)
|
|
|
|
def state(self):
|
|
with open("/sys/class/power_supply/{}/status".format(self._battery)) as f:
|
|
self._status = f.read().strip()
|
|
if self._status == "Discharging":
|
|
if self._capacity < 10:
|
|
return "discharging_critical"
|
|
if self._capacity < 25:
|
|
return "discharging_low"
|
|
if self._capacity < 50:
|
|
return "discharging_medium"
|
|
if self._capacity < 75:
|
|
return "discharging_high"
|
|
return "discharging_full"
|
|
else:
|
|
if self._capacity > 95:
|
|
return "charged"
|
|
return "charging"
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|