small fix in bat_freebsd

This commit is contained in:
mutlusun 2017-02-23 22:36:22 +01:00
parent 96c13b326b
commit f2aa096f83
1 changed files with 2 additions and 2 deletions

View File

@ -48,9 +48,9 @@ local function worker(format, warg)
-- calculate wear level from (last full / design) capacity
local wear = "N/A"
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 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