From 422348e01d52e7da6838a440d379413e1d0f77eb Mon Sep 17 00:00:00 2001 From: yashar-sb-sb Date: Thu, 9 Mar 2017 23:41:55 +0330 Subject: [PATCH] Update diskspace() Delete extra space! (looks better without the extra space. and now it's consistent with other widgets.) --- bumblebee/modules/disk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bumblebee/modules/disk.py b/bumblebee/modules/disk.py index d48b3ef..7132e55 100644 --- a/bumblebee/modules/disk.py +++ b/bumblebee/modules/disk.py @@ -28,7 +28,7 @@ class Module(bumblebee.engine.Module): cmd="nautilus {}".format(self._path)) def diskspace(self, widget): - return "\uf0a0 {} {}/{} ({:05.02f}%)".format(self._path, + return "\uf0a0{} {}/{} ({:05.02f}%)".format(self._path, bumblebee.util.bytefmt(self._used), bumblebee.util.bytefmt(self._size), self._perc )