We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 738b670 + 051491c commit 6ae0b97Copy full SHA for 6ae0b97
scriptmodules/supplementary/raspbiantools.sh
@@ -25,6 +25,14 @@ function apt_upgrade_raspbiantools() {
25
function lxde_raspbiantools() {
26
aptInstall --no-install-recommends xorg lxde
27
aptInstall raspberrypi-ui-mods rpi-chromium-mods gvfs
28
+ # On `buster`, disable PulseAudio since it messes up the audio settings
29
+ # remove the lxpanel plugin for PulseAudio volume, to prevent a crash due to missing PulseAudio
30
+ # and install the volume lxpanel plugin that supports ALSA
31
+ if [[ "$__os_debian_ver" -lt 11 ]]; then
32
+ __toggle_pulseaudio_audiosettings "off"
33
+ aptRemove lxplug-volumepulse
34
+ aptInstall lxplug-volume
35
+ fi
36
37
setConfigRoot "ports"
38
addPort "lxde" "lxde" "Desktop" "XINIT:startx"
0 commit comments