X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/b371de56f8bf19f982a4f6887f2110444b590f74..0279482eeb5867f49b4efc83d591393f9c3d0adb:/widgets/abase.lua diff --git a/widgets/abase.lua b/widgets/abase.lua index 075d615..a176cf1 100644 --- a/widgets/abase.lua +++ b/widgets/abase.lua @@ -6,14 +6,11 @@ --]] -local newtimer = require("lain.helpers").newtimer -local async = require("lain.asyncshell") +local helpers = require("lain.helpers") local wibox = require("wibox") - local setmetatable = setmetatable --- Basic template for custom widgets --- Asynchronous version +-- Basic template for custom widgets (asynchronous version) -- lain.widgets.abase local function worker(args) @@ -23,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