X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/342df3ab43dfe857195c3a5921781895718533b8..2d67c3962019c47529f357a3c347288c905257b2:/widgets/base.lua diff --git a/widgets/base.lua b/widgets/base.lua index 198b6f7..cd84e36 100644 --- a/widgets/base.lua +++ b/widgets/base.lua @@ -7,16 +7,17 @@ --]] local newtimer = require("lain.helpers").newtimer +local read_pipe = require("lain.helpers").read_pipe + 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 base = {} local args = args or {} local timeout = args.timeout or 5 local cmd = args.cmd or "" @@ -25,16 +26,17 @@ local function worker(args) 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 = read_pipe(cmd) + if output ~= base.prev then + widget = base.widget + settings() + base.prev = output + end 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 })