
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?

On Fri, Jun 22, 2012 at 9:29 AM, Carsten Mattner < carstenmattner@googlemail.com> 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 } -- brandon s allbery allbery.b@gmail.com wandering unix systems administrator (available) (412) 475-9364 vm/sms

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.
participants (2)
-
Brandon Allbery
-
Carsten Mattner