Replies: 1 comment
-
|
also this is in a ChromeOS VM, so just an example. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
So this is what I think is the actual fix for Sober not outputting sound.
So if you know which command that displays the audio playback device ,
(inix -A for Mint, aplay -l for Debian/ChromeOS linux VM ex.)issue #666 's 2nd comment gave me the idea to do that.Velocity's comment on issue 974 made me realize that there might be some code in the installed files that directs the audio to the speaker/audio card.
So in theory, (well if you find the file/folder that does all of the sound stuff that is) do the command that shows the playback hardware devices/sound cards, for ex.,
franbael85@penguin:~$ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: SoundCard [VirtIO SoundCard], device 0: virtio-snd [VirtIO PCM 0]
Subdevices: 1/1
Subdevice #0: subdevice #0
copy the
virito-snd, and then put that in the line of code in that file that directs the sound to pipewire instead of virito-snd (audio playback device), and then audio plays. Well, in theory.Beta Was this translation helpful? Give feedback.
All reactions