diff options
-rw-r--r-- | XMonad/Actions/Commands.hs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/XMonad/Actions/Commands.hs b/XMonad/Actions/Commands.hs index f513990..21a48f6 100644 --- a/XMonad/Actions/Commands.hs +++ b/XMonad/Actions/Commands.hs @@ -93,11 +93,11 @@ defaultCommands = do , ("run" , spawn "exe=`dmenu_path | dmenu -b` && exec $exe" ) , ("kill" , kill ) , ("refresh" , refresh ) - , ("focus-up" , windows $ focusUp ) - , ("focus-down" , windows $ focusDown ) - , ("swap-up" , windows $ swapUp ) - , ("swap-down" , windows $ swapDown ) - , ("swap-master" , windows $ swapMaster ) + , ("focus-up" , windows focusUp ) + , ("focus-down" , windows focusDown ) + , ("swap-up" , windows swapUp ) + , ("swap-down" , windows swapDown ) + , ("swap-master" , windows swapMaster ) , ("sink" , withFocused $ windows . sink ) , ("quit-wm" , io $ exitWith ExitSuccess ) ] |