mirror of https://github.com/lcpz/lain.git
21 lines
718 B
Lua
21 lines
718 B
Lua
|
|
--[[
|
|
|
|
Lain
|
|
Layouts, widgets and utilities for Awesome WM
|
|
|
|
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" }
|
|
|
|
return setmetatable(widgets, { __index = wrequire })
|