18 lines
472 B
Lua
18 lines
472 B
Lua
---------------------------------------------------------------------------
|
|
-- @author Gregor Best
|
|
-- @copyright 2008 Gregor Best
|
|
-- @release @AWESOME_VERSION@
|
|
---------------------------------------------------------------------------
|
|
|
|
-- Grab environment we need
|
|
local setmetatable = setmetatable
|
|
|
|
--- Dummy function for floating layout
|
|
module("awful.layout.suit.floating")
|
|
|
|
local function floating(_, screen)
|
|
return nil
|
|
end
|
|
|
|
setmetatable(_M, { __call = floating })
|