From: aajjbb Date: Sun, 3 Jan 2016 14:19:31 +0000 (-0200) Subject: fixing small issue on previous commit, first_line function returns string, not integer X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/bd8442c2ef8b51eac261c9722e16ec1afd1ac13b?pf=etc fixing small issue on previous commit, first_line function returns string, not integer --- 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"