SimpleDate, Submap: modMask --> modMask x

This commit is contained in:
Brent Yorgey 2007-11-27 19:20:39 +00:00
parent 0cce3cff7e
commit eb6c642fd9
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ import XMonad.Util.Run
-- --
-- and add a keybinding, for example: -- and add a keybinding, for example:
-- --
-- > , ((modMask, xK_d ), date) -- > , ((modMask x, xK_d ), date)
-- --
-- In this example, a popup date menu will now be bound to @mod-d@. -- In this example, a popup date menu will now be bound to @mod-d@.
-- --

View File

@ -37,7 +37,7 @@ First, import this module into your @~\/.xmonad\/xmonad.hs@:
Allows you to create a sub-mapping of keys. Example: Allows you to create a sub-mapping of keys. Example:
> , ((modMask, xK_a), submap . M.fromList $ > , ((modMask x, xK_a), submap . M.fromList $
> [ ((0, xK_n), spawn "mpc next") > [ ((0, xK_n), spawn "mpc next")
> , ((0, xK_p), spawn "mpc prev") > , ((0, xK_p), spawn "mpc prev")
> , ((0, xK_z), spawn "mpc random") > , ((0, xK_z), spawn "mpc random")