EwmhDesktops: move to correct name, update so it compiles

This commit is contained in:
gwern0 2007-11-06 19:17:51 +00:00
parent 4109a68fdf
commit e13f9849ae
2 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
-- | -- |
-- Module : XMonadContrib.EwmhDesktops -- Module : XMonad.Hooks.EwmhDesktops
-- Copyright : (c) Joachim Breitner <mail@joachim-breitner.de> -- Copyright : (c) Joachim Breitner <mail@joachim-breitner.de>
-- License : BSD -- License : BSD
-- --
@ -11,7 +11,7 @@
-- Makes xmonad use the EWMH hints to tell panel applications about its -- Makes xmonad use the EWMH hints to tell panel applications about its
-- workspaces and the windows therein. -- workspaces and the windows therein.
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
module XMonadContrib.EwmhDesktops ( module XMonad.Hooks.EwmhDesktops (
-- * Usage -- * Usage
-- $usage -- $usage
ewmhDesktopsLogHook ewmhDesktopsLogHook
@ -27,18 +27,18 @@ import qualified XMonad.StackSet as W
import Graphics.X11.Xlib import Graphics.X11.Xlib
import Graphics.X11.Xlib.Extras import Graphics.X11.Xlib.Extras
import XMonadContrib.SetWMName import XMonad.Hooks.SetWMName
-- $usage -- $usage
-- Add the imports to your configuration file and add the logHook: -- Add the imports to your configuration file and add the logHook:
-- --
-- > import XMonadContrib.EwmhDesktops -- > import XMonad.Hooks.EwmhDesktops
-- --
-- > logHook :: X() -- > logHook :: X()
-- > logHook = do ewmhDesktopsLogHook -- > logHook = do ewmhDesktopsLogHook
-- > return () -- > return ()
-- %import XMonadContrib.EwmhDesktops -- %import XMonad.Hooks.EwmhDesktops
-- %def -- comment out default logHook definition above if you uncomment this: -- %def -- comment out default logHook definition above if you uncomment this:
-- %def logHook = ewmhDesktopsLogHook -- %def logHook = ewmhDesktopsLogHook

View File

@ -25,7 +25,7 @@ module XMonad.Layout.Magnifier (
import Graphics.X11.Xlib (Window, Rectangle(..)) import Graphics.X11.Xlib (Window, Rectangle(..))
import XMonad import XMonad
import XMonad.StackSet import XMonad.StackSet
import XMonad.Layout.LayoutHelpers -- import XMonad.Layout.LayoutHelpers
-- $usage -- $usage
-- > import XMonad.Layout.Magnifier -- > import XMonad.Layout.Magnifier