(11-28-2020, 05:41 PM)hiimtye Wrote: update: I can select different devices, but selecting speakers powers them on, but no sound comes through themso I resolved this, by accident. when I was configuring my conky display, I set my old tconk.sh script to run, and one of my extra config options in it is to swap in a .asoundrc depending on what sound system I'm using (I have one for pulse/OSS, one for pulse/alsa, one for alsa/dmix). I swapped in the pulse/alsa one (as that's the one I use on my PC, which the script is configured for) and lost sound. I swapped in the alsa/dmix one and the speakers work fine now. for reference, here's my alsa/dmix .asoundrc:
Code:
# This configuration works for sharing sound in WINE and normal apps
pcm.my_card {
type hw
card 0
device 0
}
ctl.my_card {
type hw
card 0
}
pcm.dmixed {
type dmix
ipc_key 1024
slave {
pcm "my_card"
period_time 0
period_size 1024
buffer_size 8192
rate 44100
#format "S32_LE"
#periods 128
}
}
ctl.dmixed {
type hw
card 0
}
pcm.dsnooped {
type dsnoop
ipc_key 2048
slave {
pcm "my_card"
}
}
ctl.dsnooped {
type hw
card 0
}
pcm.asymed {
type asym
playback.pcm "dmixed"
capture.pcm "dsnooped"
}
ctl.asymed {
type hw
card 0
}
pcm.pasymed {
type plug
slave.pcm "asymed"
}
ctl.pasymed {
type hw
card 0
}
pcm.dsp0 {
type plug
slave.pcm "asymed"
}
ctl.dsp0 {
type hw
card 0
}
pcm.!default {
type plug
slave.pcm "asymed"
}
ctl.!default {
type hw
card 0
}