lain/widget/init.lua

20 lines
457 B
Lua
Raw Normal View History

2013-09-07 12:06:42 +02:00
--[[
Lain
Layouts, widgets and utilities for Awesome WM
Widgets section
Licensed under GNU General Public License v2
* (c) 2013, Luca CPZ
* (c) 2010-2012, Peter Hofmann
2013-09-07 12:06:42 +02:00
--]]
2022-03-22 19:45:38 +01:00
local wrequire = require(tostring(...):match(".*lain") .. ".helpers").wrequire
2013-09-07 12:06:42 +02:00
local setmetatable = setmetatable
2022-03-22 19:45:38 +01:00
local widget = { _NAME = tostring(...):match(".*lain") .. ".widget" }
2013-09-07 12:06:42 +02:00
2017-02-08 20:45:11 +01:00
return setmetatable(widget, { __index = wrequire })