web-dev-qa-db-ja.com

Xubuntu / XFCEのhttp(s)://リンクのデフォルトプログラムを変更する方法

XubuntuでXFCEを使用しています。デフォルトのブラウザをChromiumにしたい。

設定マネージャー>優先アプリケーション WebブラウザーはChromiumに設定されています。

Gconf-editorの場合:/desktop/gnome/url-handlers/httpおよび/desktop/gnome/url-handlers/httpscommandキーは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はデフォルトのブラウザを決定または設定できません。」

5
Selivanov Pavel

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をデフォルトのブラウザーにします。

7
Zanna