On Mon, Jan 02, 2017 at 01:12:35AM -0800, [email protected] wrote: > I noticed new windows open above window that I set to override-redirect > myself. Could it be that qtile is not mapping windows with XRestackWindows > instead of XRaiseWindow, to ensure that managed windows always appear > below override-redirect windows?
Qtile uses XCB, so the equivalents are just a MapWindow request followed by a ConfigureRequest setting the StackMode. A grep for StackMode shows some relevant code here: https://github.com/qtile/qtile/blob/develop/libqtile/window.py#L1368 https://github.com/qtile/qtile/blob/develop/libqtile/manager.py#L929 Tycho > -- > You received this message because you are subscribed to the Google Groups > "qtile-dev" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "qtile-dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
