如何更改 Xubuntu/XFCE 中 http(s):// 链接的默认程序

如何更改 Xubuntu/XFCE 中 http(s):// 链接的默认程序

我在 Xubuntu 上使用 XFCE。我希望我的默认浏览器是 Chromium。

设置管理器 > 首选应用程序网络浏览器设置为 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。

我该如何修复它?

UPD1:Chromium 设置:“Chromium 无法确定或设置默认浏览器。”

答案1

使用以下方法更改默认浏览器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 设为默认浏览器。

相关内容