Skip to content

Commit

Permalink
swap alt for windows key, remove shift from close
Browse files Browse the repository at this point in the history
  • Loading branch information
Anund committed Jan 5, 2016
1 parent 49fa9cb commit acfbe76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xmonad/xmonad.hs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ myBorderWidth = 0
-- ("right alt"), which does not conflict with emacs keybindings. The
-- "windows key" is usually mod4Mask.
--
myModMask = mod1Mask
myModMask = mod4Mask

-- The default number of workspaces (virtual screens) and their names.
-- By default we use numeric strings, but any string may be used as a
Expand Down Expand Up @@ -70,7 +70,7 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $
, ((modm, xK_p), spawn "dmenu_run -fn \"Droid Sans Mono\"-20")

-- close focused window
, ((modm .|. shiftMask, xK_c ), kill)
, ((modm, xK_c ), kill)

-- Rotate through the available layout algorithms
, ((modm, xK_space ), sendMessage NextLayout)
Expand Down

0 comments on commit acfbe76

Please sign in to comment.