X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/d8944fd10b79afa7839a192781113113b2ba9ad0..7121c9ab504508fce55314d59a835cfb10471569:/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"