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 | e05f94bc42b291ab735c978e8c8fc0be8fed5677 (patch) | |
tree | 8915d88d4cde6d2994cf7e0c6ac82ec033c6a393 | |
parent | b3725b53b4d98295caf9136eab804424d0b61239 (diff) | |
download | metatile-e05f94bc42b291ab735c978e8c8fc0be8fed5677.tar metatile-e05f94bc42b291ab735c978e8c8fc0be8fed5677.zip |
otherPossibleLayouts is empty by default
darcs-hash:20070927235845-a5988-3a96d12284b2ddc084e261aaa0c8cdd422ffb782
-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: |