X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/fd35485c200a52c9429f9a4f3f5c8282b64dba30..2e5d0fbabcdaaeff9937c06e1db095569327957b:/widgets/base.lua diff --git a/widgets/base.lua b/widgets/base.lua index 642a858..2a8f507 100644 --- a/widgets/base.lua +++ b/widgets/base.lua @@ -6,26 +6,24 @@ --]] -local newtimer = require("lain.helpers").newtimer -local read_pipe = require("lain.helpers").read_pipe +local helpers = require("lain.helpers") local wibox = require("wibox") - local setmetatable = setmetatable -- Basic template for custom widgets -- lain.widgets.base local function worker(args) - local base = {} - local args = args or {} - local timeout = args.timeout or 5 - local cmd = args.cmd or "" - local settings = args.settings or function() end - - base.widget = wibox.widget.textbox('') + local base = { widget = wibox.widget.textbox() } + local args = args or {} + local timeout = args.timeout or 5 + local nostart = args.nostart or false + local stoppable = args.stoppable or false + local cmd = args.cmd + local settings = args.settings or function() end function base.update() - output = read_pipe(cmd) + output = helpers.read_pipe(cmd) if output ~= base.prev then widget = base.widget settings() @@ -33,9 +31,9 @@ local function worker(args) end end - newtimer(cmd, timeout, base.update) + base.timer = helpers.newtimer(cmd, timeout, base.update, nostart, stoppable) - return setmetatable(base, { __index = base.widget }) + return base end return setmetatable({}, { __call = function(_, ...) return worker(...) end })