Skip to content

Commit

Permalink
xmonad.hs: keys for all workspaces
Browse files Browse the repository at this point in the history
  • Loading branch information
coyotebush committed May 2, 2015
1 parent f6bc96d commit f252772
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xmonad.hs
Expand Up @@ -109,11 +109,11 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = fromList $
-- mod-[1..9], Switch to workspace N
-- mod-shift-[1..9], Move client to workspace N
[((m .|. modm, k), windows $ f i)
| (i, k) <- zip (XMonad.workspaces conf) ([xK_1 .. xK_4])
| (i, k) <- zip (XMonad.workspaces conf) ([xK_1 .. xK_9])
, (f, m) <- [{-(W.greedyView, 0),-} (W.shift, shiftMask)]]
++
[((modm, k), switchTopic myTopicConfig i)
| (i, k) <- zip (XMonad.workspaces conf) ([xK_1 .. xK_4])]
| (i, k) <- zip (XMonad.workspaces conf) ([xK_1 .. xK_9])]
++

-- mod-{w,e,r}, Switch to physical/Xinerama screens 1, 2, or 3
Expand Down

0 comments on commit f252772

Please sign in to comment.