From b4c9ad2ccf866e6a047af7095a51a8931229dddf Mon Sep 17 00:00:00 2001 From: nojhan Date: Fri, 4 May 2012 11:58:54 +0200 Subject: [PATCH] bugfix: duplicated shortcuts --- xmonad.hs | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/xmonad.hs b/xmonad.hs index 4176baa..fffa518 100644 --- a/xmonad.hs +++ b/xmonad.hs @@ -31,7 +31,7 @@ main = xmonad $ gnomeConfig -- add a fullscreen tabbed layout that does not avoid covering -- up desktop panels before the desktop layouts -- desktopLayoutModifiers still allow toggling panel visibility - , layoutHook = windowNavigation( desktopLayoutModifiers( simpleTabbed ||| rtall ) ) + , layoutHook = windowNavigation $ desktopLayoutModifiers $ simpleTabbed ||| rtall } -- Simple notation ala emacs `additionalKeysP` @@ -74,21 +74,14 @@ main = xmonad $ gnomeConfig , ("M-S-", sendMessage $ Swap L) , ("M-S-", sendMessage $ Swap U) , ("M-S-", sendMessage $ Swap D) - -- Swap the focused window and the master window - , ("C-M-", windows W.swapMaster) + , ("M-S-", windows W.swapMaster) -- Move focus to the master window , ("M-m", windows W.focusMaster ) -- Scratchpad , ("M-", scratchpadSpawnAction gnomeConfig { terminal = "$XTERMCMD" } ) , ("M-", scratchpadSpawnAction gnomeConfig { terminal = "$XTERMCMD" } ) - -- Swap the focused window and the master window - , ("M-S-", windows W.swapMaster) - -- Swap the focused window with the next window - , ("M-S-", windows W.swapDown ) - -- Swap the focused window with the previous window - , ("M-S-", windows W.swapUp ) -- Move focus to the next physical xinerama screen , ("M-$", onPrevNeighbour W.view)