You can use this module with the following in your
~/.xmonad/xmonad.hs:
import XMonad.Layout.SimpleDecoration
Then edit your layoutHook by adding the SimpleDecoration decoration to
your layout:
myL = simpleDeco shrinkText defaultTheme (layoutHook defaultConfig)
main = xmonad defaultConfig { layoutHook = myL }
For more detailed instructions on editing the layoutHook see:
XMonad.Doc.Extending#Editing_the_layout_hook
You can also edit the default configuration options.
mySDConfig = defaultTheme { inactiveBorderColor = "red"
, inactiveTextColor = "red"}
and
myL = dwmStyle shrinkText mySDConfig (layoutHook defaultTheme)
|