如何在Xubuntu / XFCE中更改http(s)://链接的默认程序
我在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。
我该如何解决?
UPD1 :Chromium设置:“Chromium无法确定或设置默认浏览器。”
使用update-alternatives --config x-www-browser
更改默认浏览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 to keep the current choice[*], or type selection number:
目前的选择有*
。 只需按下您要使用的浏览器的编号即可。 在此示例中,我将键入1
以使Chromium成为默认浏览器。