aboutsummaryrefslogtreecommitdiffstats
path: root/Config.hs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Config.hs7
-rw-r--r--Config.hs-boot2
2 files changed, 8 insertions, 1 deletions
diff --git a/Config.hs b/Config.hs
index 66f4fec..5c33072 100644
--- a/Config.hs
+++ b/Config.hs
@@ -92,6 +92,13 @@ borderWidth = 1
-- |
-- The default set of tiling algorithms
--
+otherPossibleLayouts :: [SomeLayout Window]
+otherPossibleLayouts = [SomeLayout $ Tall 1 1 1
+ ,SomeLayout $ Mirror $ Tall 1 1 1
+ ,SomeLayout Full
+ -- Extension-provided layouts
+ ]
+
defaultLayouts :: [SomeLayout Window]
defaultLayouts = [SomeLayout tiled
,SomeLayout $ Mirror tiled
diff --git a/Config.hs-boot b/Config.hs-boot
index 45d0850..41c45e5 100644
--- a/Config.hs-boot
+++ b/Config.hs-boot
@@ -6,4 +6,4 @@ borderWidth :: Dimension
logHook :: X ()
numlockMask :: KeyMask
workspaces :: [WorkspaceId]
-defaultLayouts :: [SomeLayout Window]
+defaultLayouts, otherPossibleLayouts :: [SomeLayout Window]