How can I open a URL with my default webbrowser in the background without changing window focus?
In other words I want to stay in the terminal while opening the webbrowser.
I have tried the webbrowser
module without success.
Python 3.8.1 (default, Jan 17 2020, 10:45:46)
>>> import webbrowser
>>> webbrowser.open("https://stackoverflow.com", autoraise=False)
Is there an easy way to solve this or is it a Mac OS problem?