X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/377b316f5d179d03378d9fa69b246f441d54fb5e..04e310cb3d28037afa4a1a44324faafcb2b54b28:/widgets/base.lua?ds=sidebyside diff --git a/widgets/base.lua b/widgets/base.lua index 198b6f7..2a7bf10 100644 --- a/widgets/base.lua +++ b/widgets/base.lua @@ -9,14 +9,14 @@ local newtimer = require("lain.helpers").newtimer local wibox = require("wibox") -local io = io +local io = { popen = io.popen } local setmetatable = setmetatable --- Basic template for custom widgets +-- Basic template for custom widgets -- lain.widgets.base -local base = {} local function worker(args) + local base = {} local args = args or {} local timeout = args.timeout or 5 local cmd = args.cmd or "" @@ -32,9 +32,9 @@ local function worker(args) settings() end - newtimer(cmd, timeout, update) + newtimer(cmd, timeout, base.update) return setmetatable(base, { __index = base.widget }) end -return setmetatable(base, { __call = function(_, ...) return worker(...) end }) +return setmetatable({}, { __call = function(_, ...) return worker(...) end })