mirror of https://github.com/lcpz/lain.git
Fixed typo in variable name
This commit is contained in:
parent
f63a7fd098
commit
3b9f9aa812
|
@ -26,11 +26,11 @@ local function worker(args)
|
||||||
base.widget = wibox.widget.textbox('')
|
base.widget = wibox.widget.textbox('')
|
||||||
|
|
||||||
function base.update()
|
function base.update()
|
||||||
if output ~= abase.prev then
|
if output ~= base.prev then
|
||||||
output = read_pipe(cmd)
|
output = read_pipe(cmd)
|
||||||
widget = base.widget
|
widget = base.widget
|
||||||
settings()
|
settings()
|
||||||
abase.prev = output
|
base.prev = output
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue