core/pulseaudio/pulseaudio.xinit

14 lines
302 B
Plaintext
Raw Normal View History

#!/bin/bash
2010-11-28 19:36:26 +08:00
case "$DESKTOP_SESSION" in
gnome|kde*|xfce*) # PulseAudio is started via XDG Autostart
;;
*)
# Extra checks in case DESKTOP_SESSION is not set correctly
if [[ -z $KDE_FULL_SESSION && -z $GNOME_DESKTOP_SESSION_ID ]]; then
/usr/bin/start-pulseaudio-x11
fi
2010-11-28 19:36:26 +08:00
;;
esac