From be9a3107d2dc9a5bed4b05c41c5ffe22d9a13140 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sat, 1 Nov 2014 23:21:32 +0100 Subject: Speialize layouts only for phoenix --- awesome/.config/awesome/rc.lua | 5 ++--- 1 file 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 -- }}} -- cgit v1.2.3-54-g00ecf