commit cf077756ee22efa87f8b4a6243b3ff0ed68d9858
parent b2f3a4b494dc9f1ba451541914212fe35b8fcaca
Author: Wilson Gheen <wilson@wilsonrgheen.com>
Date: Mon, 18 Apr 2022 16:28:24 -0500
changed Browser open command
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bbl.sh b/bbl.sh
@@ -251,7 +251,7 @@ fi
if [ "$noTerm" ]; then
if command -v "$BROWSER" > /dev/null 2>&1; then
- "$BROWSER" "$filename"
+ setsid -f "$BROWSER" "$filename" >/dev/null 2>&1
mv "$myTempDir" "${tempDirPattern}K"
else
echo "$0: Text may not be terminal-compatible and BROWSER environment variable is not set or cannot be invoked."