From a33f355232bad324b5a00d0332d61f46220f11ca Mon Sep 17 00:00:00 2001 From: Adam Vogt Date: Sat, 12 Jan 2013 04:12:39 +0000 Subject: [PATCH] Update L.TrackFloating.useTransient example code Suggest useTransient goes to the right of trackFloating which is the configuration actually tested. --- XMonad/Layout/TrackFloating.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/XMonad/Layout/TrackFloating.hs b/XMonad/Layout/TrackFloating.hs index d49ba607..b0e35e4b 100644 --- a/XMonad/Layout/TrackFloating.hs +++ b/XMonad/Layout/TrackFloating.hs @@ -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) -}