lain/layout/init.lua

20 lines
463 B
Lua
Raw Normal View History

2013-09-07 12:06:42 +02:00
--[[
Lain
Layouts, widgets and utilities for Awesome WM
Layouts 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 layout = { _NAME = tostring(...):match(".*lain") .. ".layout" }
2013-09-07 12:06:42 +02:00
return setmetatable(layout, { __index = wrequire })