tobi-wan-kenobi / bumblebee-status

bumblebee-status is a modular, theme-able status line generator for the i3 window manager.
https://bumblebee-status.readthedocs.io/en/main/
MIT License
1.2k stars 229 forks source link

[modules/disk] Use bavail instead of bfree #1004

Closed czert closed 7 months ago

czert commented 7 months ago

The ext4 filesystem reserves 5 % of disk size. os.statvfs(path).f_bfree reports this reserve as free disk space, while f_bavail considers it "full".

I believe f_bavail gives more useful information, as the reserved space cannot be used. Also, it's in line with what df reports.

tobi-wan-kenobi commented 7 months ago

Sounds sensible, many thanks!