Compare commits

...

2 Commits

Author SHA1 Message Date
exu
00a11da088 Debug running jobs 2023-11-10 13:27:25 +01:00
exu
81ba053624 Revert to previous version 2023-11-10 13:27:17 +01:00

View File

@ -376,6 +376,9 @@ if [ -f "$imagepath" ]; then
betterlockscreen -u "$imagepath" &
fi
jobs
jobs -p
# reload systemd user scripts
systemctl --user daemon-reload
@ -542,7 +545,7 @@ fi
exec "$(getent passwd $LOGNAME | cut -d: -f7)"
# wait for all background jobs to finish
wait < <(jobs -p); echo "Finished"
wait $(jobs -p)
# exit successfully
exit 0