fixing small issue on previous commit, first_line function returns string, not integer
This commit is contained in:
parent
e6a4db72f5
commit
bd8442c2ef
1 changed files with 2 additions and 3 deletions
|
@ -97,10 +97,9 @@ local function worker(args)
|
||||||
|
|
||||||
bat_now.time = string.format("%02d:%02d", hrs, min)
|
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)
|
bat_now.perc = string.format("%d", perc)
|
||||||
elseif perc > 100 then
|
elseif perc > 100 then
|
||||||
bat_now.perc = "100"
|
bat_now.perc = "100"
|
||||||
|
|
Loading…
Add table
Reference in a new issue