Start Pluto from a script using a different browser than the system default #955
Unanswered
wsgreen
asked this question in
Questions about using Pluto
Replies: 1 comment 1 reply
-
|
We decided not to support this feature with the reasoning that your default browser is likely your preferred browser. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to start Pluto from a shell script:
However, I would like to start it using a different browser than the default on my system.
Pluto uses xdg-open on Linux. I can change the default browser using xdg-settings in the script but that change would be global.
I can use
Pluto.run(launch_browser=false)but then how do I get the correct URL to start the browser sincerun()blocks the script?I guess it would be nice if I could do something like
Pluto.run(browser="/usr/bin/firefox"), but maybe there is another way to do this.Thanks!
Beta Was this translation helpful? Give feedback.
All reactions