diff options
Diffstat (limited to '')
-rw-r--r-- | Config.hs | 8 | ||||
-rw-r--r-- | Config.hs-boot | 2 |
2 files changed, 5 insertions, 5 deletions
@@ -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 ] diff --git a/Config.hs-boot b/Config.hs-boot index 3629ea2..45d0850 100644 --- a/Config.hs-boot +++ b/Config.hs-boot @@ -6,4 +6,4 @@ borderWidth :: Dimension logHook :: X () numlockMask :: KeyMask workspaces :: [WorkspaceId] -defaultLayouts :: [(String, SomeLayout Window)] +defaultLayouts :: [SomeLayout Window] |