summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpks <pks@pks.rocks>2023-01-09 16:39:38 +0100
committerpks <pks@pks.rocks>2023-01-09 16:39:38 +0100
commitf280a6496715a67896603dccae04e350aaa31df6 (patch)
tree0140eb9f629026848c7863ccbf1514dbe8830a6b
parentf38fcd23625a4f0c8ce941e88af95982724dba65 (diff)
browser: add -g
-rwxr-xr-xbrowser4
1 files changed, 2 insertions, 2 deletions
diff --git a/browser b/browser
index f6392e7..57304fb 100755
--- a/browser
+++ b/browser
@@ -40,10 +40,10 @@ elif [[ "$platform" == "Darwin" ]]; then
case "$1" in
*tmp/pks/mutt/*)
cp $1 $1.html
- open -j -a "Firefox" "$1.html"
+ open -g -j -a "Firefox" "$1.html"
;;
*)
- open -j -a "Firefox" "$1"
+ open -g -j -a "Firefox" "$1"
;;
esac
return 0