From d6b43de5cea8e897b4977d17b62281fdf89dee21 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 14 Aug 2022 17:26:32 +1200 Subject: Restore correct backgrounding for xsession Why did I think this would work? --- x/xsession.sh | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/x/xsession.sh b/x/xsession.sh index e0552315..3e2e468d 100644 --- a/x/xsession.sh +++ b/x/xsession.sh @@ -46,16 +46,14 @@ xset \ # log the failed attempt to start them to the errors file, as a hint that # I might want to install them. # -( - # Display compositor - compton - # Message display (libnotify) - dunst - # PulseAudio system tray tool - pasystray - # Hide mouse after inactivity - unclutter -) & +## Display compositor +compton & +## Message display (libnotify) +dunst & +## PulseAudio system tray tool +pasystray & +## Hide mouse after inactivity +unclutter & # Load all supplementary scripts in ~/.xsession.d for sh in "$HOME"/.xsession.d/*.sh ; do -- cgit v1.2.3