diff options
Diffstat (limited to 'XMonad/Actions')
-rw-r--r-- | XMonad/Actions/SimpleDate.hs | 2 | ||||
-rw-r--r-- | XMonad/Actions/Submap.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/XMonad/Actions/SimpleDate.hs b/XMonad/Actions/SimpleDate.hs index c1f87a4..3b976bb 100644 --- a/XMonad/Actions/SimpleDate.hs +++ b/XMonad/Actions/SimpleDate.hs @@ -29,7 +29,7 @@ import XMonad.Util.Run -- -- 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@. -- diff --git a/XMonad/Actions/Submap.hs b/XMonad/Actions/Submap.hs index a43233d..eb3c9c1 100644 --- a/XMonad/Actions/Submap.hs +++ b/XMonad/Actions/Submap.hs @@ -37,7 +37,7 @@ First, import this module into your @~\/.xmonad\/xmonad.hs@: 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_p), spawn "mpc prev") > , ((0, xK_z), spawn "mpc random") |