mirror of https://github.com/lcpz/lain.git
fixing issue of battery widget showing above 100% percentage values
This commit is contained in:
parent
137e072153
commit
fca030d084
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue