XubuntuでXFCEを使用しています。デフォルトのブラウザをChromiumにしたい。
設定マネージャー>優先アプリケーション WebブラウザーはChromiumに設定されています。
Gconf-editorの場合:/desktop/gnome/url-handlers/http
および/desktop/gnome/url-handlers/https
command
キーはexo-open --launch WebBrowser %s
に設定されます。 exo-open --launch WebBrowser https://google.com
はChromiumを起動します。
note:~$ xdg-mime query default x-scheme-handler/http
chromium.desktop
note:~$ xdg-mime query default x-scheme-handler/https
chromium.desktop
ただし、プログラムはFirefoxでhttp(s)リンクを開きます。たとえば、xdg-open https://google.com
はFirefoxを起動します。
どうすれば修正できますか?
PD1:Chromiumの設定:「Chromiumはデフォルトのブラウザを決定または設定できません。」
update-alternatives --config x-www-browser
を使用してデフォルトのブラウザーを変更します。
$ update-alternatives --config x-www-browser
There are 2 choices for the alternative link group x-www-browser \
(providing /usr/bin/x-www-browser).
Selection Path Priority Status
------------------------------------------------------------
* 0 /usr/bin/firefox 50 auto mode
1 /usr/bin/chromium 10 manual mode
Press <enter> to keep the current choice[*], or type selection number:
現在の選択には*
があります。使用したいブラウザの番号を押すだけです。この例では、1
と入力して、Chromiumをデフォルトのブラウザーにします。