bumblebee-status/bumblebee/modules/disk.py

63 lines
2.3 KiB
Python
Raw Normal View History

# pylint: disable=C0111,R0903
"""Shows free diskspace, total diskspace and the percentage of free disk space.
2017-03-09 21:08:31 +01:00
Parameters:
* disk.warning: Warning threshold in % of disk space (defaults to 80%)
* disk.critical: Critical threshold in % of disk space (defaults ot 90%)
* disk.path: Path to calculate disk usage from (defaults to /)
* disk.open: Which application / file manager to launch (default xdg-open)
2017-07-31 01:38:55 +02:00
* disk.format: Format string, tags {path}, {used}, {left}, {size} and {percent} (defaults to "{path} {used}/{size} ({percent:05.02f}%)")
"""
import os
import bumblebee.input
import bumblebee.output
import bumblebee.engine
import bumblebee.util
class Module(bumblebee.engine.Module):
def __init__(self, engine, config):
super(Module, self).__init__(engine, config,
bumblebee.output.Widget(full_text=self.diskspace)
)
self._path = self.parameter("path", "/")
2017-07-31 01:38:55 +02:00
self._format = self.parameter("format", "{used}/{size} ({percent:05.02f}%)")
self._app = self.parameter("open", "xdg-open")
2017-07-31 01:38:55 +02:00
self._used = 0
2017-07-31 01:38:55 +02:00
self._left = 0
self._size = 0
2017-07-31 01:38:55 +02:00
self._percent = 0
engine.input.register_callback(self, button=bumblebee.input.LEFT_MOUSE,
cmd="{} {}".format(self._app,
self._path))
2017-07-31 01:38:55 +02:00
def diskspace(self, widget):
2017-07-31 01:38:55 +02:00
used_str = bumblebee.util.bytefmt(self._used)
size_str = bumblebee.util.bytefmt(self._size)
left_str = bumblebee.util.bytefmt(self._left)
percent_str = self._percent
return self._format.format(path = self._path,
used = used_str,
left = left_str,
size = size_str,
percent = percent_str)
2017-06-01 18:21:10 +02:00
def update(self, widgets):
st = os.statvfs(self._path)
self._size = st.f_blocks * st.f_frsize
self._used = (st.f_blocks - st.f_bfree) * st.f_frsize
2017-07-31 01:38:55 +02:00
self._left = self._size - self._used;
self._percent = 100.0 * self._used/self._size
def state(self, widget):
2017-07-31 01:38:55 +02:00
return self.threshold_state(self._percent, 80, 90)
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4