diff options
author | Adam Vogt <vogt.adam@gmail.com> | 2009-03-22 00:37:36 +0100 |
---|---|---|
committer | Adam Vogt <vogt.adam@gmail.com> | 2009-03-22 00:37:36 +0100 |
commit | e735810434ac390bf0719958ae873193e04bdc06 (patch) | |
tree | badb8172a73cd26db24b8e12a10e4d9e78aa9198 /XMonad | |
parent | fac71029b800760e229904604040c39b002db6ed (diff) | |
download | metatile-e735810434ac390bf0719958ae873193e04bdc06.tar metatile-e735810434ac390bf0719958ae873193e04bdc06.zip |
Pester the user with one (not two) xmessages on config errors
Ignore-this: f481f7d3ba5fca5c53a0b3a87daa32bb
darcs-hash:20090321233736-1499c-6e732e248211c129eba7b664fed681c97ae09020
Diffstat (limited to 'XMonad')
-rw-r--r-- | XMonad/Config.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/XMonad/Config.hs b/XMonad/Config.hs index c05c1b1..28bb493 100644 --- a/XMonad/Config.hs +++ b/XMonad/Config.hs @@ -218,7 +218,7 @@ keys conf@(XConfig {XMonad.modMask = modMask}) = M.fromList $ -- quit, or restart , ((modMask .|. shiftMask, xK_q ), io (exitWith ExitSuccess)) -- %! Quit xmonad - , ((modMask , xK_q ), spawn "xmonad --recompile; xmonad --restart") -- %! Restart xmonad + , ((modMask , xK_q ), spawn "xmonad --recompile && xmonad --restart") -- %! Restart xmonad ] ++ -- mod-[1..9] %! Switch to workspace N |