With dearpygui, I would like to have the main window (the one that contains all the other windows) to always be on top, even if it does not have focus. Here is what I have so far :
from dearpygui.core import *
from dearpygui.simple import *
with window('MainWindow', width=500, height=500):
add_button('Read screen')
I went with this solution for now. I'll edit my answer if it gets supported by the library. This is a feature in their roadmap for now (see this issue).