summaryrefslogtreecommitdiffstats
path: root/Config.hs
diff options
context:
space:
mode:
authorDavid Roundy <droundy@darcs.net>2007-09-21 23:21:59 +0200
committerDavid Roundy <droundy@darcs.net>2007-09-21 23:21:59 +0200
commit85dc84516e3848ca9d9a268c121220de164d0e9e (patch)
tree4b498023867881b8e7392235b7e39037a292b2b1 /Config.hs
parent704ca55fc2de620d85929ca5cbcab5f2a03e77cc (diff)
downloadmetatile-85dc84516e3848ca9d9a268c121220de164d0e9e.tar
metatile-85dc84516e3848ca9d9a268c121220de164d0e9e.zip
add layout selection back into core xmonad using LayoutSelection.
This is just a reimplementation of LayoutChoice. darcs-hash:20070921212159-72aca-870bb8d3e596fcb9edc48f51bec538054b4165e6
Diffstat (limited to 'Config.hs')
-rw-r--r--Config.hs10
1 files changed, 5 insertions, 5 deletions
diff --git a/Config.hs b/Config.hs
index d603889..642a219 100644
--- a/Config.hs
+++ b/Config.hs
@@ -92,10 +92,10 @@ borderWidth = 1
-- |
-- The default set of tiling algorithms
--
-defaultLayouts :: [SomeLayout Window]
-defaultLayouts = [ SomeLayout tiled
- , SomeLayout $ Mirror tiled
- , SomeLayout Full
+defaultLayouts :: [(String, SomeLayout Window)]
+defaultLayouts = [("tall", SomeLayout tiled)
+ ,("wide", SomeLayout $ Mirror tiled)
+ ,("full", SomeLayout Full)
-- Extension-provided layouts
]
@@ -135,7 +135,7 @@ keys = M.fromList $
, ((modMask .|. shiftMask, xK_p ), spawn "gmrun") -- %! Launch gmrun
, ((modMask .|. shiftMask, xK_c ), kill) -- %! Close the focused window
- , ((modMask, xK_space ), switchLayout) -- %! Rotate through the available layout algorithms
+ , ((modMask, xK_space ), sendMessage NextLayout) -- %! Rotate through the available layout algorithms
, ((modMask, xK_n ), refresh) -- %! Resize viewed windows to the correct size