X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/e6a4db72f5b0a91a82653151886617528346e9eb..bb3e0cb61d1e09bdc3f4c08fdb752c727c0f79a3:/widgets/bat.lua?ds=sidebyside

diff --git a/widgets/bat.lua b/widgets/bat.lua
index 1730494..d55be17 100644
--- a/widgets/bat.lua
+++ b/widgets/bat.lua
@@ -97,9 +97,8 @@ 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 math.floor((rem / tot) * 100)
 
-            local perc = (rem / tot) * 100
             if perc <= 100 then
                 bat_now.perc = string.format("%d", perc)
             elseif perc > 100 then