commit 28e91cd8798fd55993e98c83e577dd1d82955257
parent e4b913866b759d4744b8636ac73a8775447dd28e
Author: mmnmnnmnmm <mnnnm@disroot.org>
Date: Fri, 19 Aug 2022 11:09:43 +0100
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:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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*)