X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/cabd72a77557bc7d406b4a639e3abbd276003d91..d9877c4bedca550478507f268f43e137e4454c24:/widgets/base.lua diff --git a/widgets/base.lua b/widgets/base.lua index 3d4ce9e..87b0c85 100644 --- a/widgets/base.lua +++ b/widgets/base.lua @@ -6,35 +6,36 @@ --]] -local newtimer = require("lain.helpers").newtimer +local helpers = require("lain.helpers") local wibox = require("wibox") - -local io = io local setmetatable = setmetatable --- Basic template for custom widgets +-- Basic template for custom widgets -- lain.widgets.base -local base = {} local function worker(args) - local args = args or {} - local timeout = args.timeout or 5 - 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('') + base.widget = wibox.widget.textbox() function base.update() - local f = assert(io.popen(cmd)) - output = f:read("*all") - f:close() - widget = base.widget - settings() + output = helpers.read_pipe(cmd) + if output ~= base.prev then + 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 }) end -return setmetatable(base, { __call = function(_, ...) return worker(...) end }) +return setmetatable({}, { __call = function(_, ...) return worker(...) end })