8 lines
140 B
Plaintext
8 lines
140 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
case "$SESSION" in
|
||
|
GNOME|KDE*|xfce4) # PulseAudio is started via XDG Autostart
|
||
|
;;
|
||
|
*) /usr/bin/start-pulseaudio-x11 ;;
|
||
|
esac
|