From: Luke Bonham Date: Mon, 4 Jan 2016 13:20:47 +0000 (+0100) Subject: Merge pull request #161 from aajjbb/batwidget-percentage-fix2 X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/d8944fd10b79afa7839a192781113113b2ba9ad0?hp=e6a4db72f5b0a91a82653151886617528346e9eb Merge pull request #161 from aajjbb/batwidget-percentage-fix2 fixing small issue on previous commit issue --- diff --git a/widgets/bat.lua b/widgets/bat.lua index 1730494..aa0ce61 100644 --- a/widgets/bat.lua +++ b/widgets/bat.lua @@ -97,10 +97,9 @@ local function worker(args) bat_now.time = string.format("%02d:%02d", hrs, min) - local perc = first_line(bstr .. "/capacity") or (rem / tot) * 100 + local perc = tonumber(first_line(bstr .. "/capacity")) or (rem / tot) * 100 - local perc = (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"