[modules/cpu] Pad to 3 digits before comma to fix width
I cannot get the min_width property to work right now, so in order to fix the width of the CPU widget, pad the utilization to 3 digits (so that even 100% aligns nicely). see #23
This commit is contained in:
parent
38a42e4a77
commit
761b81970d
2 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ class Module(bumblebee.engine.Module):
|
|||
cmd="gnome-system-monitor")
|
||||
|
||||
def utilization(self):
|
||||
return "{:05.02f}%".format(self._utilization)
|
||||
return "{:06.02f}%".format(self._utilization)
|
||||
|
||||
def update(self, widgets):
|
||||
self._utilization = psutil.cpu_percent(percpu=False)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue