aboutsummaryrefslogtreecommitdiff
path: root/bin/web
diff options
context:
space:
mode:
authormmnmnnmnmm <mnnnm@disroot.org>2022-08-19 11:09:43 +0100
committerDan Cross <crossd@gmail.com>2022-09-06 13:21:47 -0400
commit28e91cd8798fd55993e98c83e577dd1d82955257 (patch)
tree656e8b8158428b28bda60a37680a2693564a37a1 /bin/web
parente4b913866b759d4744b8636ac73a8775447dd28e (diff)
web: fix plumbing with Firefox
Default builds of Firefox remove the previous X remote interface, now causing the use of -remote to silently exit and do nothing. https://hg.mozilla.org/mozilla-central/rev/ef22d8cbf4ef
Diffstat (limited to 'bin/web')
-rwxr-xr-xbin/web2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/web b/bin/web
index 5de67398..1028d125 100755
--- a/bin/web
+++ b/bin/web
@@ -27,7 +27,7 @@ plumbunix()
$BROWSER -remote 'openURL('"$@"',new-window)'
;;
*firefox*)
- $BROWSER -remote 'openURL('"$@"',new-tab)' ||
+ $BROWSER --new-tab "$@" ||
$BROWSER "$@"
;;
*mozilla*)