summaryrefslogtreecommitdiffstats
path: root/Config.hs
diff options
context:
space:
mode:
authorDavid Roundy <droundy@darcs.net>2007-09-29 21:13:20 +0200
committerDavid Roundy <droundy@darcs.net>2007-09-29 21:13:20 +0200
commitfbf8b5217a1d0aa39e4a542cee610883f982026a (patch)
treeaa82cc6934a3858d2e622435850eb7a2f3c41b07 /Config.hs
parente64c43498b16750d90de82bf4967df65581486fe (diff)
downloadmetatile-fbf8b5217a1d0aa39e4a542cee610883f982026a.tar
metatile-fbf8b5217a1d0aa39e4a542cee610883f982026a.zip
some renaming of classes and data types.
darcs-hash:20070929191320-72aca-63c25731f6efb2de0d786c7ebe2fed2fa288e03a
Diffstat (limited to 'Config.hs')
-rw-r--r--Config.hs16
1 files changed, 8 insertions, 8 deletions
diff --git a/Config.hs b/Config.hs
index 59d22f6..9fe7e94 100644
--- a/Config.hs
+++ b/Config.hs
@@ -107,7 +107,7 @@ borderWidth = 1
-- |
-- A list of layouts which, in addition to the defaultLayouts, xmonad can
-- deserialize.
-possibleLayouts :: [SomeLayout Window]
+possibleLayouts :: [Layout Window]
possibleLayouts = [defaultLayout
-- Extension-provided layouts
] ++ defaultLayouts
@@ -115,13 +115,13 @@ possibleLayouts = [defaultLayout
-- |
-- The default tiling algorithm
--
-defaultLayout :: SomeLayout Window
-defaultLayout = SomeLayout $ LayoutSelection defaultLayouts
+defaultLayout :: Layout Window
+defaultLayout = Layout $ LayoutSelection defaultLayouts
-defaultLayouts :: [SomeLayout Window]
-defaultLayouts = [ SomeLayout tiled
- , SomeLayout $ Mirror tiled
- , SomeLayout Full
+defaultLayouts :: [Layout Window]
+defaultLayouts = [ Layout tiled
+ , Layout $ Mirror tiled
+ , Layout Full
-- Extension-provided layouts
]
@@ -141,7 +141,7 @@ defaultLayouts = [ SomeLayout tiled
-- |
-- A list of layouts which, in addition to the defaultLayouts, xmonad can
-- deserialize.
-otherPossibleLayouts :: [SomeLayout Window]
+otherPossibleLayouts :: [Layout Window]
otherPossibleLayouts = []
-- |