aboutsummaryrefslogtreecommitdiffstats
path: root/Config.hs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Config.hs7
-rw-r--r--Config.hs-boot1
2 files changed, 8 insertions, 0 deletions
diff --git a/Config.hs b/Config.hs
index fc941db..b420418 100644
--- a/Config.hs
+++ b/Config.hs
@@ -100,6 +100,13 @@ defaultLayouts = [ tiled , mirror tiled , full ]
delta = 3%100
--
+-- Enable logging of state changes to stdout.
+-- The internal state of the window manager is 'shown' in Haskell data format
+--
+logging :: Bool
+logging = False
+
+--
-- The key bindings list.
--
-- The unusual comment format is used to generate the documentation
diff --git a/Config.hs-boot b/Config.hs-boot
index 2d66ae1..b6868aa 100644
--- a/Config.hs-boot
+++ b/Config.hs-boot
@@ -1,3 +1,4 @@
module Config where
import Graphics.X11.Xlib.Types (Dimension)
borderWidth :: Dimension
+logging :: Bool