From b1ff0ad0bdc1cc4b97d8c76331622e4be9d08fea Mon Sep 17 00:00:00 2001 From: NRK Date: Thu, 17 Feb 2022 15:16:30 +0600 Subject: [PATCH] don't assume how to open $BROWSER just exec it. if user wants nohup they can add it manually. --- sxbm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sxbm b/sxbm index 7f43475..53b7f66 100755 --- a/sxbm +++ b/sxbm @@ -161,7 +161,7 @@ bm_open() { [ "$LINK_NUM" -gt 1 ] && [ -z "$FORCE" ] && die "Too many links\nUse '$APPNAME open -f' to force open them all\n\n$LINK" - nohup $BROWSER $LINK 1>/dev/null 2>&1 & + exec $BROWSER $LINK } bm_edit() {