mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:37:13 +08:00
14 lines
302 B
Bash
14 lines
302 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
|
|
|