X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/ece196a6b092b8d90218a920d1e1a43e51a367f2..17fa506422e4eeee0de14a9989817af73bb0694f:/widgets/abase.lua diff --git a/widgets/abase.lua b/widgets/abase.lua index 20cc955..a176cf1 100644 --- a/widgets/abase.lua +++ b/widgets/abase.lua @@ -6,15 +6,11 @@ --]] -local newtimer = require("lain.helpers").newtimer -local async = require("lain.asyncshell") +local helpers = require("lain.helpers") local wibox = require("wibox") - -local io = io local setmetatable = setmetatable --- Basic template for custom widgets --- Asynchronous version +-- Basic template for custom widgets (asynchronous version) -- lain.widgets.abase local function worker(args) @@ -24,18 +20,20 @@ local function worker(args) local cmd = args.cmd or "" local settings = args.settings or function() end - abase.widget = wibox.widget.textbox('') + abase.widget = wibox.widget.textbox() function abase.update() - async.request(cmd, function(f) - output = f:read("*a") - f:close() - widget = abase.widget - settings() + helpers.async(cmd, function(f) + output = f + if output ~= abase.prev then + widget = abase.widget + settings() + abase.prev = output + end end) end - newtimer(cmd, timeout, abase.update) + helpers.newtimer(cmd, timeout, abase.update) return setmetatable(abase, { __index = abase.widget }) end