X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/98977a1888c57a00dbefcbf83c4e598daeab33aa..a00417d8011690d977cbdab1f1378ec369e5f355:/widgets/base.lua diff --git a/widgets/base.lua b/widgets/base.lua index 88478b0..87b0c85 100644 --- a/widgets/base.lua +++ b/widgets/base.lua @@ -8,33 +8,32 @@ 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 1 - local cmd = args.cmd or "" - local settings = args.settings or function() end + 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 - base.widget = wibox.widget.textbox('') - helpers.set_map(cmd, '') + base.widget = wibox.widget.textbox() function base.update() output = helpers.read_pipe(cmd) - - if helpers.get_map(cmd) ~= output then + if output ~= base.prev then widget = base.widget settings() - helpers.set_map(cmd, output) + base.prev = output end end - helpers.newtimer(cmd, timeout, base.update) + base.timer = helpers.newtimer(cmd, timeout, base.update, nostart, stoppable) return setmetatable(base, { __index = base.widget }) end