From b9298d7e112168dde8aeb56cd6f40f2c404993a3 Mon Sep 17 00:00:00 2001 From: mayfrost Date: Wed, 11 Jul 2018 10:39:22 +0000 Subject: [PATCH] Update AUDIO.md --- AUDIO.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/AUDIO.md b/AUDIO.md index 9e923b8..33b8657 100644 --- a/AUDIO.md +++ b/AUDIO.md @@ -12,14 +12,16 @@ Here is how to get sound on a minimal install without the insanity of pulseaudio `$ cat /proc/asound/modules` Here is an example of what you will see in __/proc/asound/modules__: -``` 0 snd_usb_audio +``` +0 snd_usb_audio 1 snd_hda_intel ``` 4. Select from the above and put them in the order you want in the file __/etc/modprobe.d/alsa-base.conf__, by assigning an index from -2 to 2, marking the preferred device as the lowest number. As an example if you have two devices and want the one that says usb because that is your headphone, on __/etc/modprobe.d/alsa-base.conf__ you will put: -``` options snd_usb_audio enable=1 index=0 +``` +options snd_usb_audio enable=1 index=0 options snd_hda_intel index=1 ```