Setting some panel, menu or other shortcut icon(s) may be enough for OP, but others might want a more general solution.
Debian has "solved" the problem of which browser to run several times.
An unwritten rule says that a program may try to use the value of the BROWSER environment variable when starting a web browser (maybe now
previously unwritten).
sensible-browser is one such program.
But that seems like a last resort. It tries to open the passed URL with $BROWSER, gnome-www-browser, x-www-browser, "gnome-terminal www-browser", sensible-terminal www-browser, www-browser (but the Gnome-ish ones only in a Gnome session, so generally not applicable here, and this is "secret knowledge" from one code version that may change or have changed).
In turn, x-www-browser is the name for the browser set by the _alternatives_ system, which is a general **system-wide** solution in the Debian _dpkg_ installer to the problem of which actual program to run for a certain generic action. You can read its mind:
Code: Select all
$ update-alternatives --display x-www-browser
x-www-browser - auto mode
link best version is /usr/bin/seamonkey
link currently points to /usr/bin/seamonkey
link x-www-browser is /usr/bin/x-www-browser
slave x-www-browser.1.gz is /usr/share/man/man1/x-www-browser.1.gz
/usr/bin/firefox-esr - priority 70
slave x-www-browser.1.gz: /usr/share/man/man1/firefox-esr.1.gz
/usr/bin/mx-viewer - priority 20
/usr/bin/seamonkey - priority 75
$
Or install and run the _galternatives_ GUI tool.
If OP generally wants Falkon and that should apply to all accounts on the system, select it using
Code: Select all
sudo update-alternatives --config x-www-browser
Or if this a per-user issue, export BROWSER=falkon (maybe use its full pathname) in .profile.
Then specify Firefox, or whatever, explicitly when wanted.
Off-topic, it's time these forums understood Markdown, or at least in-line [icode]code tags[/icode]. And why doesn't
have any effect (or even font=Georgia as in the forum editor tooltip)?