mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 12:54:35 +08:00
13 lines
301 B
Bash
13 lines
301 B
Bash
#!/bin/bash
|
|
|
|
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
|
|
;;
|
|
esac
|