Is there any way to have 2 windows in X11, with the following criteria:
- Second window always stays on top of the first one
- Second window doesn't stay on top of other applications' windows
- No flickering when switching windows
- Both windows need to be top level windows (not parented under each other) and not blocking
Making the second one modal almost works, but it blocks the first one, which is not desired.
Here's how one may do this in Qt by creating non-modal
QDialog
widgets.All of your conditions are met as far as I can tell.