Update update module
Used shutil.disk_usage(path) instead of os.statvfs(path)
This commit is contained in:
parent
ca9712770a
commit
3f17f0382e
1 changed files with 4 additions and 4 deletions
|
@ -8,7 +8,7 @@ Parameters:
|
|||
* disk.path: Path to calculate disk usage from (defaults to /)
|
||||
"""
|
||||
|
||||
import os
|
||||
import shutil
|
||||
|
||||
import bumblebee.input
|
||||
import bumblebee.output
|
||||
|
@ -34,9 +34,9 @@ class Module(bumblebee.engine.Module):
|
|||
)
|
||||
|
||||
def update(self, widgets):
|
||||
st = os.statvfs(self._path)
|
||||
self._size = st.f_frsize*st.f_blocks
|
||||
self._used = self._size - st.f_frsize*st.f_bavail
|
||||
st = shutil.disk_usage(self._path)
|
||||
self._size = st.total
|
||||
self._used = st.used
|
||||
self._perc = 100.0*self._used/self._size
|
||||
|
||||
def state(self, widget):
|
||||
|
|
Loading…
Reference in a new issue