diff --git a/.xmonad/xmonad.hs b/.xmonad/xmonad.hs index 7edb3c6..bc9d1b1 100644 --- a/.xmonad/xmonad.hs +++ b/.xmonad/xmonad.hs @@ -196,7 +196,10 @@ myKeys = ("M-S-", resetTemp), -- ("M-S-b", fullscreenBrowser), ("", spawnCalculator), - ("", spawn "systemctl suspend") --TODO: Only enable this on laptop + ("", spawn "systemctl suspend"), --TODO: Only enable this on laptop + ("M-c", windows copyToAll), + ("M-S-c", killAllOtherCopies), + ("M-S-", kill) ] ++ [ (m ++ k, windows $ f w) | (m, f) <- zip ["M-", "M-S-"] @@ -205,9 +208,6 @@ myKeys = (withScreen 1 myWorkspaces) ++ zip mySharedWorkspaceKeys (withScreen 2 mySharedWorkspaces) - ("M-c", windows copyToAll), - ("M-S-c", killAllOtherCopies), - ("M-S-", kill) ] zipKeyPrefixes :: [String] -> [String] -> [String]