
22 Jun
2012
22 Jun
'12
2:47 p.m.
On Fri, Jun 22, 2012 at 7:58 PM, Brandon Allbery
On Fri, Jun 22, 2012 at 9:29 AM, Carsten Mattner
wrote: I'd like to not ignore resize hints same as dwm's default of resizeHints=True. Is this possible with any of the layout extensions?
http://xmonad.org/xmonad-docs/xmonad-contrib/XMonad-Layout-LayoutHints.html
Basically, import XMonad.Layout.LayoutHints and apply layoutHints to whatever layouts you want it to apply to. If you're working with the default layouts, that is something like
defaultConfig { layoutHook = layoutHints $ layoutHook defaultConfig }
Thanks Brandon that works.