aboutsummaryrefslogtreecommitdiff
path: root/devel/astah-community/files/mozilla
diff options
context:
space:
mode:
Diffstat (limited to 'devel/astah-community/files/mozilla')
-rw-r--r--devel/astah-community/files/mozilla10
1 files changed, 10 insertions, 0 deletions
diff --git a/devel/astah-community/files/mozilla b/devel/astah-community/files/mozilla
new file mode 100644
index 000000000000..5ece63ef79c9
--- /dev/null
+++ b/devel/astah-community/files/mozilla
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+# eliminate own path from PATH (without this, cause a inifinite loop)
+PATH=${PATH#$(dirname $0)}
+
+# add your favorite browser in the top of the list
+for browser in mozilla linux-mozilla firefox linux-mozillafirebird opera linux-opera
+do
+ type $browser > /dev/null 2>&1 && exec $browser "$@"
+done