
13 Mar
2011
13 Mar
'11
6:49 p.m.
On Sun, Mar 13, 2011 at 6:18 PM, adam vogt
That's exactly the right idea. You could bind to M-j, M-k like that in this config: [...] up = updatePointer $ TowardsCentre 0.2 0.2
main = xmonad $ defaultConfig `additionalKeysP` [("M-j", do windows W.focusDown; up), ("M-k", do windows W.focusUp; up)]
Thanks, that's great!