2013-08-27 15:14:44 +04:00
|
|
|
#!/bin/bash
|
|
|
|
# -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
|
2023-01-25 17:14:03 +04:00
|
|
|
source "$(dirname -- "$0")/lib/ulib/auto" || exit 1
|
2013-08-27 15:14:44 +04:00
|
|
|
|
2017-10-19 09:12:08 +04:00
|
|
|
# faut-il supprimer la sortie erreur? les warnings de GTK sont horripilants.
|
|
|
|
: "${OPENURL_STDERR:=}"
|
|
|
|
|
2013-08-27 15:14:44 +04:00
|
|
|
function display_help() {
|
|
|
|
uecho "$scriptname: Ouvrir une URL dans un navigateur
|
|
|
|
|
|
|
|
USAGE
|
|
|
|
$scriptname <file.url|file.desktop|URL>"
|
|
|
|
}
|
|
|
|
|
|
|
|
parse_opts "${PRETTYOPTS[@]}" \
|
|
|
|
--help '$exit_with display_help' \
|
|
|
|
@ args -- "$@" && set -- "${args[@]}" || die "$args"
|
|
|
|
|
2015-07-22 12:28:52 +04:00
|
|
|
"$scriptdir/caturl" --check "$1"
|
|
|
|
case $? in
|
|
|
|
2) die "Vous devez spécifier l'url à ouvrir";;
|
|
|
|
3) die "Le fichier spécifié ne contient pas d'url";;
|
|
|
|
esac
|
|
|
|
setx url="$scriptdir/caturl" "$1" || die
|
2013-08-27 15:14:44 +04:00
|
|
|
|
|
|
|
if progexists xdg-open; then
|
2017-10-19 09:12:08 +04:00
|
|
|
if [ -n "$OPENURL_STDERR" ]; then
|
|
|
|
exec xdg-open "$url"
|
|
|
|
else
|
|
|
|
exec xdg-open "$url" 2>/dev/null
|
|
|
|
fi
|
2013-08-27 15:14:44 +04:00
|
|
|
elif progexists gnome-open; then
|
2017-10-19 09:12:08 +04:00
|
|
|
if [ -n "$OPENURL_STDERR" ]; then
|
|
|
|
exec gnome-open "$url"
|
|
|
|
else
|
|
|
|
exec gnome-open "$url" 2>/dev/null
|
2013-08-27 15:14:44 +04:00
|
|
|
fi
|
2017-10-19 09:12:08 +04:00
|
|
|
elif check_sysinfos -s macosx; then
|
|
|
|
# si on est sur un MacOSX, utiliser open
|
|
|
|
exec open "$url"
|
2013-08-27 15:14:44 +04:00
|
|
|
fi
|
|
|
|
|
|
|
|
die "Impossible de trouver une méthode pour ouvrir l'url $url"
|