diff options
author | Devin Mullins <me@twifkak.com> | 2007-10-14 02:55:25 +0200 |
---|---|---|
committer | Devin Mullins <me@twifkak.com> | 2007-10-14 02:55:25 +0200 |
commit | f77480c140467ddf0d5de4f10c97c398d5bbb306 (patch) | |
tree | b1b8d82e0c3c95df7c6e71de227ddc5a83aa11a8 | |
parent | 5696abb8ad96c95732fa69d814f0f8f5151705cf (diff) | |
download | metatile-f77480c140467ddf0d5de4f10c97c398d5bbb306.tar metatile-f77480c140467ddf0d5de4f10c97c398d5bbb306.zip |
explain numlockMask
darcs-hash:20071014005525-78224-d63fdb701def5d77b943d437e6e1ab7eb0f9f49c
-rw-r--r-- | Config.hs | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -50,8 +50,9 @@ workspaces = map show [1 .. 9 :: Int] modMask :: KeyMask modMask = mod1Mask --- | numlock handling. The mask for the numlock key. You may need to --- change this on some systems. +-- | 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: @@ -59,6 +60,9 @@ modMask = mod1Mask -- > $ 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. +-- numlockMask :: KeyMask numlockMask = mod2Mask |