aboutsummaryrefslogtreecommitdiffstats
path: root/Config.hs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Config.hs4
-rw-r--r--Config.hs-boot3
2 files changed, 5 insertions, 2 deletions
diff --git a/Config.hs b/Config.hs
index a49f845..7d2c714 100644
--- a/Config.hs
+++ b/Config.hs
@@ -114,8 +114,8 @@ focusedBorderColor = "#ff0000"
-- What layout to start in, and what the default proportion for the
-- left pane should be in the tiled layout. See LayoutDesc and
-- friends in XMonad.hs for options.
-startingLayoutDesc :: LayoutDesc
-startingLayoutDesc =
+defaultLayoutDesc :: LayoutDesc
+defaultLayoutDesc =
LayoutDesc { layoutType = Full
, tileFraction = 1%2 }
diff --git a/Config.hs-boot b/Config.hs-boot
new file mode 100644
index 0000000..f5e7206
--- /dev/null
+++ b/Config.hs-boot
@@ -0,0 +1,3 @@
+module Config where
+import XMonad (LayoutDesc)
+defaultLayoutDesc :: LayoutDesc