mirror of https://github.com/lcpz/lain.git
Merge pull request #161 from aajjbb/batwidget-percentage-fix2
fixing small issue on previous commit issue
This commit is contained in:
commit
d8944fd10b
|
@ -97,9 +97,8 @@ 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
|
||||||
|
|
Loading…
Reference in New Issue