summaryrefslogtreecommitdiff
path: root/open-in-browser
diff options
context:
space:
mode:
Diffstat (limited to 'open-in-browser')
-rwxr-xr-xopen-in-browser4
1 files changed, 2 insertions, 2 deletions
diff --git a/open-in-browser b/open-in-browser
index bb30c64..8c92e3c 100755
--- a/open-in-browser
+++ b/open-in-browser
@@ -2,9 +2,9 @@
if [[ $(uname) == "Darwin" ]]; then
if [[ $1 == http://* || $1 == https://* ]]; then
- osascript -e "tell application \"Firefox\" to open location \"$1\""
+ osascript -e "tell application \"Zen\" to open location \"$1\""
else
- open -a Firefox $1
+ open -a Zen $1
fi
else
firefox "$1" &>/dev/null &