summaryrefslogtreecommitdiff
path: root/shell/source/unix/misc/gnome-open-url.sh
diff options
context:
space:
mode:
Diffstat (limited to 'shell/source/unix/misc/gnome-open-url.sh')
-rwxr-xr-xshell/source/unix/misc/gnome-open-url.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/source/unix/misc/gnome-open-url.sh b/shell/source/unix/misc/gnome-open-url.sh
index ab730d169a49..e73dfdeac239 100755
--- a/shell/source/unix/misc/gnome-open-url.sh
+++ b/shell/source/unix/misc/gnome-open-url.sh
@@ -1,6 +1,6 @@
#!/bin/sh
# use xdg-open or gnome-open if available
-xdg-open "$1" 2>/dev/null || gnome-open "$1" 2>/dev/null || "$0.bin" $1
+xdg-open "$1" 2>/dev/null || gnome-open "$1" 2>/dev/null || sensible-browser "$1" || "$0.bin" $1
exit 0