Hyperlink modules named in WindowMenu, RestoreMinimized, and Minimize

This commit is contained in:
Adam Vogt 2009-10-03 15:13:25 +00:00
parent 563266f3a5
commit f6fa7e509f
3 changed files with 8 additions and 9 deletions

View File

@ -8,13 +8,13 @@
-- Stability : unstable -- Stability : unstable
-- Portability : not portable -- Portability : not portable
-- --
-- Uses XMonad.Actions.GridSelect to display a number of actions related to -- Uses "XMonad.Actions.GridSelect" to display a number of actions related to
-- window management in the center of the focused window. Actions include: Closing, -- window management in the center of the focused window. Actions include: Closing,
-- maximizing, minimizing and shifting the window to another workspace. -- maximizing, minimizing and shifting the window to another workspace.
-- --
-- Note: For maximizing and minimizing to actually work, you will need -- Note: For maximizing and minimizing to actually work, you will need
-- to integrate XMonad.Layout.Maximize and XMonad.Layout.Minimize into your setup. -- to integrate "XMonad.Layout.Maximize" and "XMonad.Layout.Minimize" into your
-- See the documentation of those modules for more information. -- setup. See the documentation of those modules for more information.
-- --
----------------------------------------------------------------------------- -----------------------------------------------------------------------------

View File

@ -8,7 +8,7 @@
-- Stability : unstable -- Stability : unstable
-- Portability : not portable -- Portability : not portable
-- --
-- Lets you restore minimized windows (see XMonad.Layout.Minimize) -- Lets you restore minimized windows (see "XMonad.Layout.Minimize")
-- by selecting them on a taskbar (listens for _NET_ACTIVE_WINDOW -- by selecting them on a taskbar (listens for _NET_ACTIVE_WINDOW
-- and WM_CHANGE_STATE). -- and WM_CHANGE_STATE).
-- --

View File

@ -53,12 +53,11 @@ import Data.List
-- --
-- "XMonad.Doc.Extending#Editing_key_bindings". -- "XMonad.Doc.Extending#Editing_key_bindings".
-- --
-- The module is designed to work together with XMonad.Layout.BoringWindows so -- The module is designed to work together with "XMonad.Layout.BoringWindows" so
-- that minimized windows are marked as boring and will be skipped when switching -- that minimized windows will be skipped when switching the focus window with
-- the focused window. See the documentation for BoringWindows and use the boringAuto -- the keyboard. Use the 'BW.boringAuto' function.
-- function, to automatically mark minimized windows as boring.
-- --
-- Also see XMonad.Hooks.RestoreMinimized if you want to be able to restore -- Also see "XMonad.Hooks.RestoreMinimized" if you want to be able to restore
-- minimized windows from your taskbar. -- minimized windows from your taskbar.
data Minimize a = Minimize [Window] deriving ( Read, Show ) data Minimize a = Minimize [Window] deriving ( Read, Show )