diff options
author | Spencer Janssen <spencerjanssen@gmail.com> | 2009-12-16 02:21:40 +0100 |
---|---|---|
committer | Spencer Janssen <spencerjanssen@gmail.com> | 2009-12-16 02:21:40 +0100 |
commit | 8b7697792fdf2124cceb64ae2945098609857346 (patch) | |
tree | 03cfec11bef00067f4cad93580cbca51e48879cc /man | |
parent | 99120a7f1012b5fa1fe4e9944fffb16686611ef5 (diff) | |
download | metatile-8b7697792fdf2124cceb64ae2945098609857346.tar metatile-8b7697792fdf2124cceb64ae2945098609857346.zip |
Determine numlockMask automatically, fixes #120
Ignore-this: d80c82dd0a23dc7a77fdc32fd2792130
darcs-hash:20091216012140-25a6b-1730d8fef04b735b04475d1772e4825fa44cb318
Diffstat (limited to 'man')
-rw-r--r-- | man/xmonad.hs | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/man/xmonad.hs b/man/xmonad.hs index fd3e20d..e1ddd69 100644 --- a/man/xmonad.hs +++ b/man/xmonad.hs @@ -34,21 +34,6 @@ myBorderWidth = 1 -- myModMask = mod1Mask --- The mask for the numlock key. Numlock status is "masked" from the --- current modifier status, so the keybindings will work with numlock on or --- off. You may need to change this on some systems. --- --- You can find the numlock modifier by running "xmodmap" and looking for a --- modifier with Num_Lock bound to it: --- --- > $ xmodmap | grep Num --- > mod2 Num_Lock (0x4d) --- --- Set numlockMask = 0 if you don't have a numlock key, or want to treat --- numlock status separately. --- -myNumlockMask = mod2Mask - -- The default number of workspaces (virtual screens) and their names. -- By default we use numeric strings, but any string may be used as a -- workspace name. The number of workspaces is determined by the length @@ -272,7 +257,6 @@ defaults = defaultConfig { focusFollowsMouse = myFocusFollowsMouse, borderWidth = myBorderWidth, modMask = myModMask, - numlockMask = myNumlockMask, workspaces = myWorkspaces, normalBorderColor = myNormalBorderColor, focusedBorderColor = myFocusedBorderColor, |