aboutsummaryrefslogtreecommitdiffstats
path: root/Config.hs
diff options
context:
space:
mode:
authorDavid Roundy <droundy@darcs.net>2007-09-14 23:59:59 +0200
committerDavid Roundy <droundy@darcs.net>2007-09-14 23:59:59 +0200
commit2bf1915b692ac6ba1078367e2f490ff44b37b791 (patch)
tree36a2db2018d52bf48ec4b3649f3bc1b5e15f772f /Config.hs
parentb3eeaf92837efb054cc9a4514044341c1918bcb6 (diff)
downloadxmonad-2bf1915b692ac6ba1078367e2f490ff44b37b791.tar.gz
xmonad-2bf1915b692ac6ba1078367e2f490ff44b37b791.tar.xz
xmonad-2bf1915b692ac6ba1078367e2f490ff44b37b791.zip
move Layout stuff into class (hokey first cut).
darcs-hash:20070914215959-72aca-3feae03a6560a70908ad37d28f47c8d47321008e.gz
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 9b02a92..8c55961 100644
--- a/Config.hs
+++ b/Config.hs
@@ -92,10 +92,10 @@ borderWidth = 1
-- |
-- The default set of tiling algorithms
--
-defaultLayouts :: [Layout Window]
-defaultLayouts = [ tiled
- , mirror tiled
- , full
+defaultLayouts :: [SomeLayout Window]
+defaultLayouts = [ SomeLayout tiled
+ , SomeLayout $ mirror tiled
+ , SomeLayout full
-- Extension-provided layouts
]