Speialize layouts only for phoenix

This commit is contained in:
Tom Willemse 2014-11-01 23:21:32 +01:00
parent 00f5f3ed9d
commit be9a3107d2

View file

@ -105,9 +105,8 @@ modkey = "Mod4"
-- Table of layouts to cover with awful.layout.inc, order matters. -- Table of layouts to cover with awful.layout.inc, order matters.
local layouts = {} local layouts = {}
if hostname == "drd" then layouts = { awful.layout.suit.tile, if hostname == "phoenix" then layouts = { awful.layout.suit.max }
awful.layout.suit.max } else layouts = { awful.layout.suit.tile, awful.layout.suit.max }
elseif hostname == "phoenix" then layouts = { awful.layout.suit.max }
end end
-- }}} -- }}}