Skip to content
Update after install System configuration authored by Projekt:Root's avatar Projekt:Root
...@@ -262,6 +262,38 @@ ctl.mixer0 { ...@@ -262,6 +262,38 @@ ctl.mixer0 {
} }
``` ```
You can use device name instead of ID number in your ALSA config file.
```
$ aplay -L
...
front:CARD=Omega,DEV=0
Lexicon Omega, USB Audio
Front speakers
...
```
```
pcm.!default {
type plug
slave { pcm "pulse" }
}
pcm.pulse {
type pulse
}
ctl.mixer0 {
type hw
card Omega,DEV=0
}
```
Note that when you change from default ID number to card name, in Bridge Type box connection will be named Custom insterad of ALSA -> PulseAudio -> JACK (plugin).
[ALSA Wiki](https://www.alsa-project.org/main/index.php/Asoundrc) | [Advanced Linux Sound Architecture](https://wiki.archlinux.org/index.php/Advanced_Linux_Sound_Architecture)
## Bridging PulseAudio in Cadence ## Bridging PulseAudio in Cadence
Open Cadence and click **ALSA Audio** in **System** tab under **JACK Bridges**. Open Cadence and click **ALSA Audio** in **System** tab under **JACK Bridges**.
... ...
......