2016-10-31 13:34:48 +01:00
|
|
|
import os
|
|
|
|
import bumblebee.util
|
|
|
|
import bumblebee.module
|
|
|
|
|
2016-10-31 16:08:03 +01:00
|
|
|
def description():
|
|
|
|
return "Shows free diskspace, total diskspace and the percentage of free disk space."
|
|
|
|
|
2016-11-05 16:18:53 +01:00
|
|
|
def parameters():
|
|
|
|
return [
|
|
|
|
"disk.warning: Warning threshold in % (defaults to 80%)",
|
|
|
|
"disk.critical: Critical threshold in % (defaults to 90%)"
|
|
|
|
]
|
|
|
|
|
2016-10-31 13:34:48 +01:00
|
|
|
class Module(bumblebee.module.Module):
|
2016-11-05 14:26:02 +01:00
|
|
|
def __init__(self, output, config, alias):
|
|
|
|
super(Module, self).__init__(output, config, alias)
|
|
|
|
self._path = self._config.parameter("path", "/")
|
2016-10-31 13:34:48 +01:00
|
|
|
|
2016-11-27 18:36:45 +01:00
|
|
|
output.add_callback(module=self.instance(), button=1, cmd="nautilus {}".format(self._path))
|
2016-11-01 08:09:10 +01:00
|
|
|
|
2016-11-05 13:23:46 +01:00
|
|
|
def widgets(self):
|
2016-10-31 13:34:48 +01:00
|
|
|
st = os.statvfs(self._path)
|
|
|
|
|
|
|
|
self._size = st.f_frsize*st.f_blocks
|
2016-11-03 19:44:11 +01:00
|
|
|
self._used = self._size - st.f_frsize*st.f_bavail
|
|
|
|
self._perc = 100.0*self._used/self._size
|
2016-10-31 13:34:48 +01:00
|
|
|
|
2016-11-05 13:23:46 +01:00
|
|
|
return bumblebee.output.Widget(self,
|
|
|
|
"{} {}/{} ({:05.02f}%)".format(self._path,
|
|
|
|
bumblebee.util.bytefmt(self._used),
|
|
|
|
bumblebee.util.bytefmt(self._size), self._perc)
|
|
|
|
)
|
2016-10-31 13:34:48 +01:00
|
|
|
|
2016-11-05 13:42:26 +01:00
|
|
|
def warning(self, widget):
|
2016-11-05 14:26:02 +01:00
|
|
|
return self._perc > self._config.parameter("warning", 80)
|
2016-10-31 13:34:48 +01:00
|
|
|
|
2016-11-05 13:42:26 +01:00
|
|
|
def critical(self, widget):
|
2016-11-05 14:26:02 +01:00
|
|
|
return self._perc > self._config.parameter("critical", 90)
|
2016-10-31 13:34:48 +01:00
|
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|