X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/3b9f9aa812fbc10fb0376dbeb1ef6f86f71df4e2..ddbf283f0ebbc6772d485fe76c5dccf338d3b837:/widgets/base.lua diff --git a/widgets/base.lua b/widgets/base.lua index e1ce297..9d7b710 100644 --- a/widgets/base.lua +++ b/widgets/base.lua @@ -6,37 +6,34 @@ --]] -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 = helpers.make_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 or "" + local settings = args.settings or function() end function base.update() + output = helpers.read_pipe(cmd) if output ~= base.prev then - output = read_pipe(cmd) widget = base.widget settings() base.prev = output 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 })