Re: Anyone know how to get sound on a 12th Gen Alder Lake based laptop?
- In reply to: Chris : "Re: Anyone know how to get sound on a 12th Gen Alder Lake based laptop?"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 06 May 2024 13:12:42 UTC
Hello Chris, Chris wrote: > On 2024-04-22 08:44, Christos Margiolis wrote: > > > > [...] > > > > hint.hdac.0.cad0.nid20.config="as=1 seq=0" > > hint.hdac.0.cad0.nid33.config="as=1 seq=15" > Thank you very much, Christos! After adding those lines and adding ALSA. > Sound > works as expected. :) > Sorry to have bothered you with this. I haven't needed to touch sound > settings > since ~8.4, because it "just worked". Is there anywhere that might explain > the > correlation between the labels and numbers that "mere mortals" can > comprehend? So what these two lines do is assign the speaker (nid20) and headphone (nid33) pins to the same association ("as", i.e group). In the second line, "seq=15" means that the headphone pin will duplicate (and automatically mute if not plugged) the first pin in that association. In other words, the output will switch from the speakers to the headphones if headphones are plugged in, and vice-versa. The snd_hda(4) man page explains what "as" and "seq" are. Christos