From 28e91cd8798fd55993e98c83e577dd1d82955257 Mon Sep 17 00:00:00 2001 From: mmnmnnmnmm Date: Fri, 19 Aug 2022 11:09:43 +0100 Subject: [PATCH] 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 --- bin/web | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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*)