Skip to content

Commit

Permalink
fix: Check for PipeWire as well as PulseAudio before falling back to …
Browse files Browse the repository at this point in the history
…ALSA
  • Loading branch information
alexhaydock committed Jan 19, 2025
1 parent 20b17cb commit b84bd34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quickemu
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ function configure_storage() {
function configure_display() {
# Determine which audio driver use between Pulseaudio or ALSA
local AUDIO_DRIVER="pa"
if ! command -v pacmd >/dev/null 2>&1 ; then
if ! command -v pacmd >/dev/null 2>&1 && ! command -v pipewire >/dev/null 2>&1; then
AUDIO_DRIVER="alsa"
fi

Expand Down

0 comments on commit b84bd34

Please sign in to comment.