mirror of https://github.com/lcpz/lain.git
fixing small issue on previous commit, first_line function returns string, not integer
This commit is contained in:
parent
e6a4db72f5
commit
bd8442c2ef
|
@ -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 (rem / tot) * 100
|
||||
|
||||
local perc = (rem / tot) * 100
|
||||
if perc <= 100 then
|
||||
bat_now.perc = string.format("%d", perc)
|
||||
elseif perc > 100 then
|
||||
|
|
Loading…
Reference in New Issue