aboutsummaryrefslogtreecommitdiffstats
path: root/Config.hs
diff options
context:
space:
mode:
authorSpencer Janssen <sjanssen@cse.unl.edu>2007-05-30 08:10:44 +0200
committerSpencer Janssen <sjanssen@cse.unl.edu>2007-05-30 08:10:44 +0200
commit92f283c5221dfb1b75136751fedf25aeecb60f19 (patch)
treea89c37d84696de940a2332db9b85345e474c4914 /Config.hs
parentc75ff3f93976d0e0ec1e1a9cfc3e78a98a906af3 (diff)
downloadxmonad-92f283c5221dfb1b75136751fedf25aeecb60f19.tar.gz
xmonad-92f283c5221dfb1b75136751fedf25aeecb60f19.tar.xz
xmonad-92f283c5221dfb1b75136751fedf25aeecb60f19.zip
UNDO: HEADS UP: Change restart keybinding to mod-q
darcs-hash:20070530061044-a5988-ec27af97c1623bcc9ad394fe2414c0b3593c4b7a.gz
Diffstat (limited to 'Config.hs')
-rw-r--r--Config.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Config.hs b/Config.hs
index 4383476..ca9b41d 100644
--- a/Config.hs
+++ b/Config.hs
@@ -123,7 +123,7 @@ keys = M.fromList $
, ((modMask , xK_b ), modifyGap (\i n -> let x = (defaultGaps ++ repeat (0,0,0,0)) !! i in if n == x then (0,0,0,0) else x)) -- @@ Toggle the status bar gap
-- quit, or restart
- , ((modMask , xK_q ), io (exitWith ExitSuccess)) -- @@ Quit xmonad
+ , ((modMask .|. shiftMask, xK_q ), io (exitWith ExitSuccess)) -- @@ Quit xmonad
, ((modMask .|. shiftMask .|. controlMask, xK_q ), restart Nothing True) -- @@ Restart xmonad
] ++