summaryrefslogtreecommitdiffstats
path: root/awesome/.config/awesome/rc.lua
diff options
context:
space:
mode:
Diffstat (limited to 'awesome/.config/awesome/rc.lua')
-rw-r--r--awesome/.config/awesome/rc.lua5
1 files changed, 2 insertions, 3 deletions
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
-- }}}