X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/bd8442c2ef8b51eac261c9722e16ec1afd1ac13b..b07aad86215f84f5d17433f751ba246da364df2b:/widgets/bat.lua diff --git a/widgets/bat.lua b/widgets/bat.lua index aa0ce61..d55be17 100644 --- a/widgets/bat.lua +++ b/widgets/bat.lua @@ -97,9 +97,9 @@ local function worker(args) bat_now.time = string.format("%02d:%02d", hrs, min) - local perc = tonumber(first_line(bstr .. "/capacity")) or (rem / tot) * 100 + local perc = tonumber(first_line(bstr .. "/capacity")) or math.floor((rem / tot) * 100) - if perc <= 100 then + if perc <= 100 then bat_now.perc = string.format("%d", perc) elseif perc > 100 then bat_now.perc = "100"