fixing issue of battery widget showing above 100% percentage values

This commit is contained in:
aajjbb 2016-01-02 22:14:37 -02:00
parent 137e072153
commit fca030d084
1 changed files with 14 additions and 13 deletions

View File

@ -97,18 +97,19 @@ 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 bat_now.perc then
local perc = (rem / tot) * 100
if perc <= 100 then
bat_now.perc = string.format("%d", perc)
elseif perc > 100 then
bat_now.perc = "100"
elseif perc < 0 then
bat_now.perc = "0"
end
end
if not perc then
perc = (rem / tot) * 100
end
if perc <= 100 then
bat_now.perc = string.format("%d", perc)
elseif perc > 100 then
bat_now.perc = "100"
elseif perc < 0 then
bat_now.perc = "0"
end
if rate ~= nil and ratev ~= nil then
bat_now.watt = string.format("%.2fW", (rate * ratev) / 1e12)