X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/1a8ddf0e7fd88ec6f71c1a59aa4b2602c12cec50..42070bba6e69b17cf6db4eae3456ff65a159924b:/widgets/bat.lua diff --git a/widgets/bat.lua b/widgets/bat.lua index 61828ec..d55be17 100644 --- a/widgets/bat.lua +++ b/widgets/bat.lua @@ -97,17 +97,14 @@ local function worker(args) 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 - 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 + local perc = tonumber(first_line(bstr .. "/capacity")) or math.floor((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 if rate ~= nil and ratev ~= nil then