plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

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:
Mbin/web | 2+-
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*)