#/bin/bash

INITCHECK=$(/usr/bin/ps -p 1 -o cmd -h)
echo $INITCHECK
if [ "$INITCHECK" = "/lib/systemd/systemd" ]; then 
	exit 0
fi
#else start them up
echo "start pipewire"
/usr/bin/pipewire &
/usr/bin/pipewire-pulse & 
/usr/bin/wireplumber &

exit 0
