Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Use ALSA on systems without a PulseAudio daemon #1480

Merged
merged 2 commits into from
Oct 19, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
feat: quickemu with alsa
  • Loading branch information
szorfein committed Oct 16, 2024
commit 81eaac742dd7d820d3b8f55469d02a1a52e5edb5
2 changes: 1 addition & 1 deletion quickemu
Original file line number Diff line number Diff line change
Expand Up @@ -881,7 +881,7 @@ 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
AUDIO_DRIVER="alsa"
AUDIO_DRIVER="alsa"
fi

# Setup the appropriate audio device based on the display output
Expand Down