diff options
author | Wirt Wolff <wirtwolff@gmail.com> | 2009-10-22 12:01:56 +0200 |
---|---|---|
committer | Wirt Wolff <wirtwolff@gmail.com> | 2009-10-22 12:01:56 +0200 |
commit | a072ea53173f5f552d483f39a1e00b53619a1ad7 (patch) | |
tree | 1c4e32080f2b9a6a220d89dd433e24669bf01279 | |
parent | 14c7b7c5149909b90a10fdaf86d561fa7f736a8f (diff) | |
download | XMonadContrib-a072ea53173f5f552d483f39a1e00b53619a1ad7.tar.gz XMonadContrib-a072ea53173f5f552d483f39a1e00b53619a1ad7.tar.xz XMonadContrib-a072ea53173f5f552d483f39a1e00b53619a1ad7.zip |
C.Desktop fix bad escaping and typo
Ignore-this: 70b51a2d8b4443fa364414630ed074c0
darcs-hash:20091022100156-18562-d188cf25a5b6d6ec922148cd3bb29b5d0479b1d7.gz
Diffstat (limited to '')
-rw-r--r-- | XMonad/Config/Desktop.hs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/XMonad/Config/Desktop.hs b/XMonad/Config/Desktop.hs index 439a057..e72e461 100644 --- a/XMonad/Config/Desktop.hs +++ b/XMonad/Config/Desktop.hs @@ -15,14 +15,14 @@ ----------------------------------------------------------------------------- module XMonad.Config.Desktop ( - -- | Several basic integration settings are common to all of xmonad\'s + -- | Several basic integration settings are common to all of xmonad's -- desktop integration configurations. The specific desktop environment - -- (DE) modules like "XMonad.Config.Gnome" use this module\'s + -- (DE) modules like "XMonad.Config.Gnome" use this module's -- @desktopConfig@ to set up basic communication between xmonad and -- the DE via a subset of the Extended Window Manager Hints (EWMH) - -- specification. Extra xmonad settings unique to specific DE\'s are + -- specification. Extra xmonad settings unique to specific DE's are -- added by overriding or modifying @desktopConfig@ fields in the - -- same way that @defaultConfig@ is customized in @~/.xmonad/xmonad.hs@. + -- same way that @defaultConfig@ is customized in @~\/.xmonad/xmonad.hs@. -- -- For more information about EWMH see: -- @@ -70,7 +70,7 @@ import qualified Data.Map as M -- <http://haskell.org/haskellwiki/Xmonad> -- -- To configure xmonad for use with a DE or with DE tools like panels --- and pagers, in place of @defaultConfig@ in your @~/.xmonad/xmonad.hs@, +-- and pagers, in place of @defaultConfig@ in your @~\/.xmonad/xmonad.hs@, -- use @desktopConfig@ or one of the other desktop configs from the -- @XMonad.Config@ hierarchy. The following setup and customization examples -- work the same way for the other desktop configs as for @desktopConfig@. @@ -138,7 +138,7 @@ import qualified Data.Map as M -- -- $eventHook --- To customize xmonad\'s event handling while still having it respond +-- To customize xmonad's event handling while still having it respond -- to EWMH events from pagers, task bars, etc. add to your imports: -- -- > import Data.Monoid @@ -163,7 +163,7 @@ import qualified Data.Map as M -- > , startupHook = do -- > startupHook desktopConfig -- > spawn "xmonad-restart.sh" --- > adjustEvenInput +-- > adjustEventInput -- desktopConfig = defaultConfig |