2016-12-04 17:45:42 +01:00
|
|
|
# pylint: disable=C0111,R0903
|
|
|
|
|
|
|
|
"""Displays CPU utilization across all CPUs."""
|
|
|
|
|
|
|
|
import psutil
|
|
|
|
import bumblebee.engine
|
|
|
|
|
|
|
|
class Module(bumblebee.engine.Module):
|
2016-12-09 08:23:53 +01:00
|
|
|
def __init__(self, engine, config):
|
|
|
|
super(Module, self).__init__(engine, config,
|
2016-12-08 08:44:54 +01:00
|
|
|
bumblebee.output.Widget(full_text=self.utilization)
|
|
|
|
)
|
2016-12-04 17:45:42 +01:00
|
|
|
self._utilization = psutil.cpu_percent(percpu=False)
|
|
|
|
|
2016-12-08 08:44:54 +01:00
|
|
|
def utilization(self):
|
|
|
|
return "{:05.02f}%".format(self._utilization)
|
2016-12-04 17:45:42 +01:00
|
|
|
|
2016-12-08 08:44:54 +01:00
|
|
|
def update(self, widgets):
|
|
|
|
self._utilization = psutil.cpu_percent(percpu=False)
|
2016-12-04 17:45:42 +01:00
|
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|