[modules/battery] Remove leading zeroes and use minwidth
This commit is contained in:
parent
302e14007b
commit
d189b3a335
2 changed files with 5 additions and 5 deletions
|
@ -16,9 +16,9 @@ import bumblebee.engine
|
|||
|
||||
class Module(bumblebee.engine.Module):
|
||||
def __init__(self, engine, config):
|
||||
super(Module, self).__init__(engine, config,
|
||||
bumblebee.output.Widget(full_text=self.capacity)
|
||||
)
|
||||
widget = bumblebee.output.Widget(full_text=self.capacity)
|
||||
widget.set("theme.minwidth", "100%")
|
||||
super(Module, self).__init__(engine, config, widget)
|
||||
battery = self.parameter("device", "BAT0")
|
||||
self._path = "/sys/class/power_supply/{}".format(battery)
|
||||
self._capacity = 100
|
||||
|
@ -29,7 +29,7 @@ class Module(bumblebee.engine.Module):
|
|||
return "ac"
|
||||
if self._capacity == -1:
|
||||
return "n/a"
|
||||
return "{:03d}%".format(self._capacity)
|
||||
return "{}%".format(self._capacity)
|
||||
|
||||
def update(self, widgets):
|
||||
self._ac = False
|
||||
|
|
|
@ -26,7 +26,7 @@ class Module(bumblebee.engine.Module):
|
|||
cmd="gnome-system-monitor")
|
||||
|
||||
def utilization(self, _):
|
||||
return "{:6.01f}%".format(self._utilization)
|
||||
return "{:.01f}%".format(self._utilization)
|
||||
|
||||
def update(self, widgets):
|
||||
self._utilization = psutil.cpu_percent(percpu=False)
|
||||
|
|
Loading…
Reference in a new issue