XMonad.Layout.WindowNavigation: configurableNavigation (navigateColor "#00aa00") $

Hi all, I'm using: XMonad.Layout.WindowNavigation ... and have (from somewhere) the following: , layoutHook = configurableNavigation (navigateColor "#00aa00") $ TL.toggleLayouts (noBorders Full) $ mkToggle (REFLECTX ?? EOT) $ mkToggle (REFLECTY ?? EOT) $ (smartBorders (Grid ||| tiled ||| Full)) When I focus different window, the window borders change color, but i don't know *what* the different colors represent. I tried reading: http://xmonad.org/xmonad-docs/xmonad-contrib/XMonad-Layout-WindowNavigation.... but didn't find anything relevant. Can someone else enlighten me? :) David

On Fri, Jun 19, 2009 at 09:29:13PM +0100, David Chanters wrote:
Hi all,
I'm using:
XMonad.Layout.WindowNavigation
... and have (from somewhere) the following:
, layoutHook = configurableNavigation (navigateColor "#00aa00") $ TL.toggleLayouts (noBorders Full) $ mkToggle (REFLECTX ?? EOT) $ mkToggle (REFLECTY ?? EOT) $ (smartBorders (Grid ||| tiled ||| Full))
When I focus different window, the window borders change color, but i don't know *what* the different colors represent.
One color represents the currently focused window. Another color represents windows directly adjacent to the currently focused window, to which you could move using the WindowNavigation commands. The third color is for all the other windows. I don't know off the top of my head exactly which colors you'll get from the above code, but hopefully that should be enough information for you to be able to figure it out! -Brent
participants (2)
-
Brent Yorgey
-
David Chanters