19 lines
595 B
Lua
19 lines
595 B
Lua
---------------------------------------------------------------------------
|
|
-- @author Uli Schlachter <psychon@znc.in>
|
|
-- @copyright 2014 Uli Schlachter
|
|
-- @module naughty
|
|
---------------------------------------------------------------------------
|
|
|
|
local naughty = require("naughty.core")
|
|
if dbus then
|
|
naughty.dbus = require("naughty.dbus")
|
|
end
|
|
|
|
naughty.action = require("naughty.action")
|
|
naughty.layout = require("naughty.layout")
|
|
naughty.notification = require("naughty.notification")
|
|
|
|
return naughty
|
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|