mirror of https://github.com/lcpz/lain.git
21 lines
726 B
Lua
21 lines
726 B
Lua
|
|
||
|
--[[
|
||
|
|
||
|
Lain
|
||
|
Layouts, widgets and utilities for Awesome WM
|
||
|
|
||
|
User contributed widgets section
|
||
|
|
||
|
Licensed under GNU General Public License v2
|
||
|
* (c) 2013, Luke Bonham
|
||
|
* (c) 2010-2012, Peter Hofmann
|
||
|
|
||
|
--]]
|
||
|
|
||
|
local wrequire = require("lain.helpers").wrequire
|
||
|
local setmetatable = setmetatable
|
||
|
|
||
|
local widgets = { _NAME = "lain.widgets.contrib" }
|
||
|
|
||
|
return setmetatable(widgets, { __index = wrequire })
|