From bd8442c2ef8b51eac261c9722e16ec1afd1ac13b Mon Sep 17 00:00:00 2001 From: aajjbb Date: Sun, 3 Jan 2016 12:19:31 -0200 Subject: [PATCH] fixing small issue on previous commit, first_line function returns string, not integer --- widgets/bat.lua | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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" -- 2.39.2