You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 1, 2024. It is now read-only.
When one wants to control the PulseAudio via the special "pulse" device can set the device in the config manually, but is not visible in the device list.
The text was updated successfully, but these errors were encountered:
This is indeed a bit clunky. The problem is that the "devices" listed in the settings are actually available cards as returned by ALSA, and since cards and devices aren't synonymous in ALSA (cf. https://en.wikipedia.org/wiki/Advanced_Linux_Sound_Architecture#Concepts), the virtual pulse device never appears in the list. The reason why it works by manually defining card=pulse in volumeicon's config is that any card name that wasn't reported by ALSA via snd_card_next yet gets added to the list manually. A potentially nicer workaround would be to define "pulse" as the default device in your `~/.asoundrc* file, e.g.,
pcm.pulse {
type pulse
}
ctl.pulse {
type pulse
}
pcm.default pulse
ctl.default pulse
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When one wants to control the PulseAudio via the special "pulse" device can set the device in the config manually, but is not visible in the device list.
The text was updated successfully, but these errors were encountered: