summaryrefslogtreecommitdiffstats
path: root/Config.hs
diff options
context:
space:
mode:
authorDavid Roundy <droundy@darcs.net>2007-09-24 20:57:53 +0200
committerDavid Roundy <droundy@darcs.net>2007-09-24 20:57:53 +0200
commit8874b8675a000b63fe435abdc013af03199e6c31 (patch)
treea4d6d620b193174a6b5dbc3572f559dfb06c1f3c /Config.hs
parente252cc1479451e1cb277ba82364125314d886092 (diff)
downloadmetatile-8874b8675a000b63fe435abdc013af03199e6c31.tar
metatile-8874b8675a000b63fe435abdc013af03199e6c31.zip
Make a String description part of each Layout.
darcs-hash:20070924185753-72aca-95002aa27cfef74bf8caf1e6f243a4626f20659c
Diffstat (limited to 'Config.hs')
-rw-r--r--Config.hs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Config.hs b/Config.hs
index e28399c..66f4fec 100644
--- a/Config.hs
+++ b/Config.hs
@@ -92,10 +92,10 @@ borderWidth = 1
-- |
-- The default set of tiling algorithms
--
-defaultLayouts :: [(String, SomeLayout Window)]
-defaultLayouts = [("tall", SomeLayout tiled)
- ,("wide", SomeLayout $ Mirror tiled)
- ,("full", SomeLayout Full)
+defaultLayouts :: [SomeLayout Window]
+defaultLayouts = [SomeLayout tiled
+ ,SomeLayout $ Mirror tiled
+ ,SomeLayout Full
-- Extension-provided layouts
]