lain/widgets/base.lua

43 lines
1.1 KiB
Lua
Raw Normal View History

2014-02-13 17:35:55 +01:00
--[[
Licensed under GNU General Public License v2
* (c) 2014, Luke Bonham
--]]
local helpers = require("lain.helpers")
2014-02-13 17:35:55 +01:00
local wibox = require("wibox")
local setmetatable = setmetatable
2014-08-08 14:25:21 +02:00
-- Basic template for custom widgets
2014-02-13 17:35:55 +01:00
-- lain.widgets.base
local function worker(args)
local base = {}
2014-02-13 17:35:55 +01:00
local args = args or {}
local timeout = args.timeout or 1
2014-02-13 17:35:55 +01:00
local cmd = args.cmd or ""
local settings = args.settings or function() end
base.widget = wibox.widget.textbox('')
helpers.set_map(cmd, '')
2014-02-13 17:35:55 +01:00
function base.update()
output = helpers.read_pipe(cmd)
if helpers.get_map(cmd) ~= output then
widget = base.widget
settings()
helpers.set_map(cmd, output)
end
2014-02-13 17:35:55 +01:00
end
helpers.newtimer(cmd, timeout, base.update)
return setmetatable(base, { __index = base.widget })
2014-02-13 17:35:55 +01:00
end
return setmetatable({}, { __call = function(_, ...) return worker(...) end })