From faba231818a5b76e7f8a979e499584f04392ea12 Mon Sep 17 00:00:00 2001 From: Kuba Orlik Date: Sun, 24 Apr 2022 18:21:18 +0200 Subject: [PATCH] Fix window manager not starting --- ephemeral-x.sh | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/ephemeral-x.sh b/ephemeral-x.sh index e96b0c3..405eba9 100755 --- a/ephemeral-x.sh +++ b/ephemeral-x.sh @@ -154,14 +154,7 @@ if [ ! -z "$WINMGR" -a "$WINMGR" != "none" ] ; then exit 1 fi WINMGRNAME=${WINMGR%% *} - quiet || echo "Starting window manager: $WINMGRNAME" - ( - if quiet ; then - exec > /dev/null - exec 2> /dev/null - fi - $WINMGR > /dev/null 2>&1 - ) & + $WINMGR &; winmgrpid=$! # Wait for the window manager to startup