X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/2b8a2bc2ae974072cb48e293db0c05e9517cff06..e6a4db72f5b0a91a82653151886617528346e9eb:/widgets/bat.lua diff --git a/widgets/bat.lua b/widgets/bat.lua index 61828ec..1730494 100644 --- a/widgets/bat.lua +++ b/widgets/bat.lua @@ -97,17 +97,15 @@ local function worker(args) bat_now.time = string.format("%02d:%02d", hrs, min) - bat_now.perc = first_line(bstr .. "/capacity") - - if not bat_now.perc then - local perc = (rem / tot) * 100 - if perc <= 100 then - bat_now.perc = string.format("%d", perc) - elseif perc > 100 then - bat_now.perc = "100" - elseif perc < 0 then - bat_now.perc = "0" - end + local perc = first_line(bstr .. "/capacity") or (rem / tot) * 100 + + local perc = (rem / tot) * 100 + if perc <= 100 then + bat_now.perc = string.format("%d", perc) + elseif perc > 100 then + bat_now.perc = "100" + elseif perc < 0 then + bat_now.perc = "0" end if rate ~= nil and ratev ~= nil then