2008-11-25 17:01:06 +01:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
-- @author Gregor Best
|
|
|
|
-- @copyright 2008 Gregor Best
|
|
|
|
-- @release @AWESOME_VERSION@
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
--- Dummy function for floating layout
|
2012-06-14 02:45:17 +02:00
|
|
|
-- awful.layout.suit.floating
|
|
|
|
local floating = {}
|
2008-11-25 17:01:06 +01:00
|
|
|
|
2012-06-14 02:45:17 +02:00
|
|
|
function floating.arrange()
|
2008-11-25 17:01:06 +01:00
|
|
|
end
|
|
|
|
|
2012-06-14 02:45:17 +02:00
|
|
|
floating.name = "floating"
|
|
|
|
|
|
|
|
return floating
|