added format parameter to cpu module

This commit is contained in:
Camilo Celis Guzman 2017-10-25 18:36:53 +09:00
parent a84e568746
commit 28ee0b474d

View file

@ -5,6 +5,7 @@
Parameters:
* cpu.warning : Warning threshold in % of CPU usage (defaults to 70%)
* cpu.critical: Critical threshold in % of CPU usage (defaults to 80%)
* cpu.format : Format string (defaults to "{:.01f}%)")
"""
try:
@ -25,8 +26,12 @@ class Module(bumblebee.engine.Module):
engine.input.register_callback(self, button=bumblebee.input.LEFT_MOUSE,
cmd="gnome-system-monitor")
@property
def _format(self):
return self.parameter("format", "{:.01f}%")
def utilization(self, _):
return "{:.01f}%".format(self._utilization)
return self._format.format(self._utilization)
def update(self, widgets):
self._utilization = psutil.cpu_percent(percpu=False)