summaryrefslogtreecommitdiffstats
path: root/man/xmonad.hs
diff options
context:
space:
mode:
Diffstat (limited to 'man/xmonad.hs')
-rw-r--r--man/xmonad.hs5
1 files changed, 5 insertions, 0 deletions
diff --git a/man/xmonad.hs b/man/xmonad.hs
index 2bcd852..ff1394b 100644
--- a/man/xmonad.hs
+++ b/man/xmonad.hs
@@ -23,6 +23,10 @@ myTerminal = "xterm"
myFocusFollowsMouse :: Bool
myFocusFollowsMouse = True
+-- Whether clicking on a window to focus also passes the click to the window
+myClickJustFocuses :: Bool
+myClickJustFocuses = False
+
-- Width of the window border in pixels.
--
myBorderWidth = 1
@@ -255,6 +259,7 @@ defaults = defaultConfig {
-- simple stuff
terminal = myTerminal,
focusFollowsMouse = myFocusFollowsMouse,
+ clickJustFocuses = myClickJustFocuses,
borderWidth = myBorderWidth,
modMask = myModMask,
workspaces = myWorkspaces,