87e76b9e40
Re-add a first version of the cmus module originally contributed by @paxy97. Still missing: * Icon themes (status) * On-click actions see #23
25 lines
783 B
Python
25 lines
783 B
Python
# pylint: disable=C0111,R0903
|
|
|
|
"""Displays CPU utilization across all CPUs."""
|
|
|
|
import psutil
|
|
import bumblebee.input
|
|
import bumblebee.output
|
|
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.utilization)
|
|
)
|
|
self._utilization = psutil.cpu_percent(percpu=False)
|
|
engine.input.register_callback(self, button=bumblebee.input.LEFT_MOUSE,
|
|
cmd="gnome-system-monitor")
|
|
|
|
def utilization(self):
|
|
return "{:05.02f}%".format(self._utilization)
|
|
|
|
def update(self, widgets):
|
|
self._utilization = psutil.cpu_percent(percpu=False)
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|