diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua index 182927c..35bf603 100644 --- a/awesome/.config/awesome/rc.lua +++ b/awesome/.config/awesome/rc.lua @@ -105,9 +105,8 @@ modkey = "Mod4" -- Table of layouts to cover with awful.layout.inc, order matters. local layouts = {} -if hostname == "drd" then layouts = { awful.layout.suit.tile, - awful.layout.suit.max } -elseif hostname == "phoenix" then layouts = { awful.layout.suit.max } +if hostname == "phoenix" then layouts = { awful.layout.suit.max } +else layouts = { awful.layout.suit.tile, awful.layout.suit.max } end -- }}}