aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vogt <vogt.adam@gmail.com>2012-12-31 11:44:20 +0100
committerAdam Vogt <vogt.adam@gmail.com>2012-12-31 11:44:20 +0100
commita640d7da87b16937f495281bc269bc49a25af87f (patch)
treeb5bd48761a9a805d1a430a96780773b05b8b5c2f
parent6fd5a380b46edd755118bfe385a99609c2b7c142 (diff)
downloadxmonad-a640d7da87b16937f495281bc269bc49a25af87f.tar.gz
xmonad-a640d7da87b16937f495281bc269bc49a25af87f.tar.xz
xmonad-a640d7da87b16937f495281bc269bc49a25af87f.zip
Add clickJustFocuses option to template configuration.
Ignore-this: 295732eb045abb30e44a3e15ea830146 darcs-hash:20121231104420-1499c-ea30cf8ca9ab615b7684aa543afcc099b4b41daf.gz
-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,