From 41869f83249821463e158f69cbe6e84ce6443153 Mon Sep 17 00:00:00 2001 From: NRK Date: Tue, 17 Aug 2021 04:19:57 +0600 Subject: [PATCH] open: use nohup instead of setsid --- sxbm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sxbm b/sxbm index a420011..117a170 100755 --- a/sxbm +++ b/sxbm @@ -164,7 +164,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" - setsid $BROWSER $LINK 1>/dev/null 2>&1 + nohup $BROWSER $LINK 1>/dev/null 2>&1 & } bm_edit() {