diff options
author | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-10-02 23:47:08 +0200 |
---|---|---|
committer | Spencer Janssen <sjanssen@cse.unl.edu> | 2007-10-02 23:47:08 +0200 |
commit | 9e7c59445f4e2bd67b2d13a7b6472b9dc406c1b2 (patch) | |
tree | 7d3b7f37cf3b2e23f5721aa00e6550a3b7051d3a | |
parent | 5e44e2bda435ab73475c1abc7d56f1134adbeb7c (diff) | |
download | metatile-9e7c59445f4e2bd67b2d13a7b6472b9dc406c1b2.tar metatile-9e7c59445f4e2bd67b2d13a7b6472b9dc406c1b2.zip |
List possibleLayouts last, because users are less likely to modify it
darcs-hash:20071002214708-a5988-4f4f61acb7f507de8cd87a05201a9a06d89e758f
-rw-r--r-- | Config.hs | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -105,13 +105,6 @@ borderWidth :: Dimension borderWidth = 1 -- | --- A list of layouts which xmonad can deserialize. -possibleLayouts :: [Layout Window] -possibleLayouts = [defaultLayout - -- Extension-provided layouts - ] ++ defaultLayouts - --- | -- The default Layout, a selector between the layouts listed below in -- defaultLayouts. -- @@ -141,6 +134,13 @@ defaultLayouts = [ Layout tiled delta = 3%100 -- | +-- A list of layouts which xmonad can deserialize. +possibleLayouts :: [Layout Window] +possibleLayouts = [defaultLayout + -- Extension-provided layouts + ] ++ defaultLayouts + +-- | -- Perform an arbitrary action on each state change. -- Examples include: -- * do nothing |