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