Obtendo este erro como usuário normal:
~$ xdg-open http://www.google.com/
xdg-open: no method available for opening 'http://www.google.com/'
~$
~$ xdg-mime query default text/html
~$
Código de /usr/bin/xdg-open
# if BROWSER variable is not set, check some well known browsers instead
if [ x"$BROWSER" = x"chromium" ]; then
BROWSER=links2:elinks:links:lynx:w3m
if [ -n "$DISPLAY" ]; then
BROWSER=firefox:mozilla:epiphany:konqueror:chromium:google-chrome:$BROW$
fi
fi
open_envvar "$1"
exit_failure_operation_impossible "no method available for opening '$1'"
}
Sistema operacional: Ubuntu 16.04 Gnu/Linux
Responder1
O tipo MIME que xdg-open usa para URIs é x-scheme-handler/<scheme>
, no seu caso, x-scheme-handler/http
e x-scheme-handler/https
. Você pode colocar uma entrada para aqueles que usam o arquivo .desktop desejado em seu
${XDG_CONFIG_HOME:-$HOME/.config}/mimeapps.list
arquivo.