pulseaudio.xinit 212 B

12345678910111213
  1. #!/bin/sh
  2. # to be sourced
  3. case "$SESSION" in
  4. GNOME|KDE*|xfce4)
  5. # XDG is supported so we don't need to do anything.
  6. # as XDG Autostart will "just work"(tm)
  7. ;;
  8. *)
  9. /usr/bin/start-pulseaudio-x11
  10. ;;
  11. esac