mirror of https://github.com/lcpz/lain.git
25 lines
759 B
Lua
25 lines
759 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",
|
||
|
terminal = "xterm" -- X default
|
||
|
}
|
||
|
|
||
|
return setmetatable(widgets, { __index = wrequire })
|