lain/widget/contrib/init.lua

19 lines
441 B
Lua
Raw Normal View History

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