Merge pull request #160 from aajjbb/batwidget-percentage-fix

battery widget percentage fix
This commit is contained in:
Luke Bonham 2016-01-03 11:18:28 +01:00
commit 0f1fe46d18

View file

@ -97,10 +97,12 @@ local function worker(args)
bat_now.time = string.format("%02d:%02d", hrs, min)
bat_now.perc = first_line(bstr .. "/capacity")
local perc = tonumber(first_line(bstr .. "/capacity"))
if not perc then
perc = (rem / tot) * 100
end
if not bat_now.perc then
local perc = (rem / tot) * 100
if perc <= 100 then
bat_now.perc = string.format("%d", perc)
elseif perc > 100 then
@ -108,7 +110,6 @@ local function worker(args)
elseif perc < 0 then
bat_now.perc = "0"
end
end
if rate ~= nil and ratev ~= nil then
bat_now.watt = string.format("%.2fW", (rate * ratev) / 1e12)