26# fix attempt

This commit is contained in:
luke bonham 2014-02-08 11:44:09 +01:00 committed by copycat-killer
parent 96df4b8790
commit 940a900b9a
1 changed files with 12 additions and 8 deletions

View File

@ -97,6 +97,9 @@ local function worker(args)
bat_now.time = string.format("%02d:%02d", hrs, min) bat_now.time = string.format("%02d:%02d", hrs, min)
bat_now.perc = first_line(bstr .. "/capacity")
if not bat_now.perc then
local perc = (rem / tot) * 100 local perc = (rem / tot) * 100
if perc <= 100 then if perc <= 100 then
bat_now.perc = string.format("%d", perc) bat_now.perc = string.format("%d", perc)
@ -105,6 +108,7 @@ local function worker(args)
elseif perc < 0 then elseif perc < 0 then
bat_now.perc = "0" bat_now.perc = "0"
end end
end
if rate ~= nil and ratev ~= nil then if rate ~= nil and ratev ~= nil then
bat_now.watt = string.format("%.2fW", (rate * ratev) / 1e12) bat_now.watt = string.format("%.2fW", (rate * ratev) / 1e12)
@ -118,7 +122,7 @@ local function worker(args)
settings() settings()
-- notifications for low and critical states -- notifications for low and critical states
if bat_now.status == "Discharging" and notify == "on" if bat_now.status == "Discharging" and notify == "on" and bat_now.perc ~= nil
then then
if tonumber(bat_now.perc) <= 5 if tonumber(bat_now.perc) <= 5
then then