fs: include available space in percent, requested by Jon

Format string and key example: "${/home avail_p}"
This commit is contained in:
Adrian C. (anrxc) 2010-03-10 01:57:25 +01:00
parent 94e7ed1beb
commit abacd771bd
2 changed files with 4 additions and 2 deletions

2
README
View File

@ -217,7 +217,7 @@ vicious.widgets.fs
systems, only local file systems are included by default
- returns a table with string keys, using mount points as a base:
{/ size_mb}, {/ size_gb}, {/ used_mb}, {/ used_gb}, {/ used_p},
{/ avail_mb}, {/ avail_gb}, {/home size_mb} etc.
{/ avail_mb}, {/ avail_gb}, {/ avail_p}, {/home size_mb} etc.
vicious.widgets.dio
- provides I/O statistics for requested storage devices

4
fs.lua
View File

@ -38,7 +38,9 @@ local function worker(format, nfs)
helpers.uformat(fs_info, m .. " size", s, unit)
helpers.uformat(fs_info, m .. " used", u, unit)
helpers.uformat(fs_info, m .. " avail", a, unit)
fs_info["{" .. m .. " used_p}"] = tonumber(p)
fs_info["{" .. m .. " used_p}"] = tonumber(p)
fs_info["{" .. m .. " avail_p}"] = 100 - tonumber(p)
end
end
f:close()