xmonad-contrib-0.8: Third party extensions for xmonadSource codeContentsIndex
XMonad.Hooks.FadeInactive
Portabilityunportable
Stabilityunstable
MaintainerJustin Bogner <mail@justinbogner.com>
Contents
Usage
Description
Makes XMonad set the _NET_WM_WINDOW_OPACITY atom for inactive windows, which causes those windows to become slightly translucent if something like xcompmgr is running
Synopsis
fadeInactiveLogHook :: Integer -> X ()
Usage

You can use this module with the following in your ~/.xmonad/xmonad.hs:

 import XMonad
 import XMonad.Hooks.FadeInactive

 myLogHook :: X ()
 myLogHook = fadeInactiveLogHook fadeAmount
     where fadeAmount = 0xdddddddd

 main = xmonad defaultConfig { logHook = myLogHook }

fadeAmount can be any integer you will need to have xcompmgr http://freedesktop.org/wiki/Software/xapps or something similar for this to do anything

For more detailed instructions on editing the layoutHook see:

XMonad.Doc.Extending#The_log_hook_and_external_status_bars

For more detailed instructions on editing the layoutHook see:

XMonad.Doc.Extending#Editing_the_layout_hook

fadeInactiveLogHook :: Integer -> X ()Source
lowers the opacity of inactive windows to the specified amount
Produced by Haddock version 2.3.0