ENH use percent instead of frac for filesystem

This commit is contained in:
Nathan Dwarshuis 2021-11-10 12:32:29 -05:00
parent 70489cd7f2
commit 667b9bad28
2 changed files with 3 additions and 3 deletions

2
core

@ -1 +1 @@
Subproject commit 40bf74d8c6f4e80981bcec3e9902967b6570c118 Subproject commit 13e3db6a9f7a0dc06be478fcd2f83cfe8ed733da

View File

@ -52,7 +52,7 @@ return function(paths)
{'root', 'boot', 'home', 'data', 'dcache', 'tmpfs'}, {'root', 'boot', 'home', 'data', 'dcache', 'tmpfs'},
SPACING, SPACING,
12, 12,
0.8 80
) )
local CONKY_CMDS = pure.map( local CONKY_CMDS = pure.map(
@ -61,7 +61,7 @@ return function(paths)
) )
local read_fs = function(index, cmd) local read_fs = function(index, cmd)
common.compound_bar_set(fs, index, i_o.conky_numeric(cmd) * 0.01) common.compound_bar_set(fs, index, i_o.conky_numeric(cmd))
end end
----------------------------------------------------------------------------- -----------------------------------------------------------------------------