small fix in bat_freebsd
This commit is contained in:
parent
96c13b326b
commit
f2aa096f83
|
@ -50,7 +50,7 @@ local function worker(format, warg)
|
|||
if bat_info["Last full capacity"] and bat_info["Design capacity"] then
|
||||
local l_full = tonumber(string.match(bat_info["Last full capacity"], "[%d]+"))
|
||||
local design = tonumber(string.match(bat_info["Design capacity"], "[%d]+"))
|
||||
wear = math.floor(100 - (l_full / design * 100))
|
||||
wear = math.floor(l_full / design * 100)
|
||||
end
|
||||
|
||||
-- dis-/charging rate as presented by battery
|
||||
|
|
Loading…
Reference in New Issue