| ||||||||
| ||||||||
| ||||||||
| 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 | ||||||||
| ||||||||
| 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: | ||||||||
| fadeInactiveLogHook :: Integer -> X () | ||||||||
| lowers the opacity of inactive windows to the specified amount | ||||||||
| Produced by Haddock version 2.4.1 |