slstatus

status monitor
git clone git://git.suckless.org/slstatus
Log | Files | Refs | README | LICENSE

commit b3e56066ed5349c6fd0afe1ac7cf5035e16a8a2f
parent 35219d39caa5ab5e0b1c9e6d4a1cbb29a388842e
Author: Aaron Marcher <me@drkhsh.at>
Date:   Fri, 18 May 2018 23:14:55 +0200

Implement fmt_scaled for disk_* functions

Diffstat:
Mcomponents/disk.c | 10+++-------
1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/components/disk.c b/components/disk.c @@ -16,8 +16,7 @@ disk_free(const char *mnt) return NULL; } - return bprintf("%f", - (float)fs.f_frsize * (float)fs.f_bavail / 1024 / 1024 / 1024); + return fmt_scaled(fs.f_frsize * fs.f_bavail); } const char * @@ -44,8 +43,7 @@ disk_total(const char *mnt) return NULL; } - return bprintf("%f", - (float)fs.f_frsize * (float)fs.f_blocks / 1024 / 1024 / 1024); + return fmt_scaled(fs.f_frsize * fs.f_blocks); } const char * @@ -58,7 +56,5 @@ disk_used(const char *mnt) return NULL; } - return bprintf("%f", - (float)fs.f_frsize * ((float)fs.f_blocks - - (float)fs.f_bfree) / 1024 / 1024 / 1024); + return fmt_scaled(fs.f_frsize * (fs.f_blocks - fs.f_bfree)); }