CustomKeys.hs: moved into `Util' directory

I still wonder why do we need all those configuration examples. :)
This commit is contained in:
"Valery V. Vorotyntsev" 2007-11-14 15:34:18 +00:00
parent 011780d68c
commit 20e92a5d40
3 changed files with 11 additions and 11 deletions

View File

@ -1,6 +1,6 @@
--------------------------------------------------------------------
-- |
-- Module : XMonad.Config.CustomKeys
-- Module : XMonad.Util.CustomKeys
-- Copyright : (c) 2007 Valery V. Vorotyntsev
-- License : BSD3-style (see LICENSE)
--
@ -11,12 +11,12 @@
-- (See also "XMonad.Util.EZConfig" in xmonad-contrib.)
--------------------------------------------------------------------
module XMonad.Config.CustomKeys (
-- * Usage
-- $usage
customKeys
, customKeysFrom
) where
module XMonad.Util.CustomKeys (
-- * Usage
-- $usage
customKeys
, customKeysFrom
) where
import XMonad
import Graphics.X11.Xlib
@ -28,7 +28,7 @@ import qualified Data.Map as M
--
-- 1. In @~\/.xmonad\/xmonad.hs@ add:
--
-- > import XMonad.Config.CustomKeys
-- > import XMonad.Util.CustomKeys
--
-- 2. Set key bindings with 'customKeys':
--
@ -48,7 +48,7 @@ import qualified Data.Map as M
-- > ]
-- | Customize 'XMonad.Config.defaultConfig' -- delete needless
-- shortcuts and insert the ones you use.
-- shortcuts and insert those you will use.
customKeys :: (XConfig Layout -> [(KeyMask, KeySym)]) -- ^ shortcuts to delete
-> (XConfig Layout -> [((KeyMask, KeySym), X ())]) -- ^ key bindings to insert
-> XConfig Layout -> M.Map (KeyMask, KeySym) (X ())

View File

@ -8,7 +8,7 @@
--
-- Useful helper functions for amending the defaultConfig.
--
-- (See also "XMonad.Config.CustomKeys" in xmonad-contrib.)
-- (See also "XMonad.Util.CustomKeys" in xmonad-contrib.)
--
--------------------------------------------------------------------

View File

@ -53,7 +53,6 @@ library
XMonad.Config.Dons
XMonad.Config.Arossato
XMonad.Config.Droundy
XMonad.Config.CustomKeys
XMonad.Hooks.DynamicLog
XMonad.Hooks.EwmhDesktops
XMonad.Hooks.ManageDocks
@ -100,6 +99,7 @@ library
XMonad.Prompt.Workspace
XMonad.Prompt.XMonad
XMonad.Util.Anneal
XMonad.Util.CustomKeys
XMonad.Util.Dmenu
XMonad.Util.Dzen
XMonad.Util.EZConfig