I am running a Python console application (Linux console, app written in Python) where as part of the run, a Python GUI (wx) subprocess is started in many different places. Is there any way to let the wx GUI start without stealing focus from the console so that the user can continue using the console app uninterrupted? Any way to prevent this from happening, either from the Python GUI app side, from the console application which launches the GUI side, or from Linux side?
Thanks