22 lines
545 B
Lua
22 lines
545 B
Lua
|
|
||
|
--[[
|
||
|
|
||
|
Lain
|
||
|
Layouts, widgets and utilities for Awesome WM
|
||
|
|
||
|
Licensed under GNU General Public License v2
|
||
|
* (c) 2013, Luke Bonham
|
||
|
|
||
|
--]]
|
||
|
|
||
|
package.loaded.lain = nil
|
||
|
|
||
|
local lain =
|
||
|
{
|
||
|
layout = require("lain.layout"),
|
||
|
util = require("lain.util"),
|
||
|
widgets = require("lain.widgets")
|
||
|
}
|
||
|
|
||
|
return lain
|