diff options
-rw-r--r-- | lib/KeyBindings.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/KeyBindings.hs b/lib/KeyBindings.hs index a4b26d3..3206270 100644 --- a/lib/KeyBindings.hs +++ b/lib/KeyBindings.hs @@ -22,7 +22,7 @@ myKeys conf@(XConfig{XMonad.modMask = modm}) = , ((modm, xK_b), safeSpawn myBrowser []) , ((modm .|. shiftMask, xK_c), kill) , ((modm, xK_n), refresh) - , ((modm, xK_q), spawn "xmonad --recompile; xmonad --restart") + , ((modm, xK_q), spawn "xmonad --recompile && xmonad --restart") , ((modm, xK_f), sendMessage $ Toggle FULL) , ((modm .|. shiftMask, xK_f), withFocused WS.toggleFloat) , ((modm, xK_space), sendMessage NextLayout) |