Update L.TrackFloating.useTransient example code

Suggest useTransient goes to the right of trackFloating which is the
configuration actually tested.
This commit is contained in:
Adam Vogt
2013-01-12 04:12:39 +00:00
parent ced8f5e0f0
commit a33f355232

View File

@@ -127,7 +127,7 @@ focusWin st@(W.Stack f u d) w
Apply to your layout in a config like:
> main = xmonad (defaultConfig{
> layoutHook = useTransientFor (trackFloating
> layoutHook = trackFloating (useTransientFor
> (noBorders Full ||| Tall 1 0.3 0.5)),
> ...
> })
@@ -145,7 +145,7 @@ window regardless of which tiled window was focused before.
> underlyingLayout = magnifier (Tall 1 0.3 0.5)
>
> optionA = trackFloating underlyingLayout
> optionB = useTransientFor (trackFloating underlyingLayout)
> optionB = trackFloating (useTransientFor underlyingLayout)
-}