diff options
author | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-09-28 01:58:45 +0200 |
---|---|---|
committer | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-09-28 01:58:45 +0200 |
commit | 2864acc04b0cead7c1a23b6e716c9a12439de42c (patch) | |
tree | 8915d88d4cde6d2994cf7e0c6ac82ec033c6a393 | |
parent | 5f9c4b3bfc270545b9e1a694afe28ecc5561f230 (diff) | |
download | xmonad-2864acc04b0cead7c1a23b6e716c9a12439de42c.tar.gz xmonad-2864acc04b0cead7c1a23b6e716c9a12439de42c.tar.xz xmonad-2864acc04b0cead7c1a23b6e716c9a12439de42c.zip |
otherPossibleLayouts is empty by default
darcs-hash:20070927235845-a5988-3a96d12284b2ddc084e261aaa0c8cdd422ffb782.gz
-rw-r--r-- | Config.hs | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -92,13 +92,6 @@ borderWidth = 1 -- | -- The default set of tiling algorithms -- -otherPossibleLayouts :: [SomeLayout Window] -otherPossibleLayouts = [SomeLayout $ Tall 1 1 1 - ,SomeLayout $ Mirror $ Tall 1 1 1 - ,SomeLayout Full - -- Extension-provided layouts - ] - defaultLayouts :: [SomeLayout Window] defaultLayouts = [SomeLayout tiled ,SomeLayout $ Mirror tiled @@ -119,6 +112,9 @@ defaultLayouts = [SomeLayout tiled -- Percent of screen to increment by when resizing panes delta = 3%100 +otherPossibleLayouts :: [SomeLayout Window] +otherPossibleLayouts = [] + -- | -- Perform an arbitrary action on each state change. -- Examples include: |