summaryrefslogtreecommitdiffstats
path: root/awesome
diff options
context:
space:
mode:
authorGravatar Tom Willemse2014-11-01 23:21:32 +0100
committerGravatar Tom Willemse2014-11-01 23:21:32 +0100
commitbe9a3107d2dc9a5bed4b05c41c5ffe22d9a13140 (patch)
tree2298d3d725ec82d93df05812eb12cd5b73ecccb2 /awesome
parent00f5f3ed9df79c86a266f3c8e2e0388f84216287 (diff)
downloaddotfiles-be9a3107d2dc9a5bed4b05c41c5ffe22d9a13140.tar.gz
dotfiles-be9a3107d2dc9a5bed4b05c41c5ffe22d9a13140.zip
Speialize layouts only for phoenix
Diffstat (limited to 'awesome')
-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
-- }}}