audio-share-discord-linux
audio-share-discord-linux copied to clipboard
microphone stopped working.
How do I delete 💀💀💀💀💀 i cant be bothered
This issue can be closed. I'm not sure if only the owner of the repo can do it, but I'm pretty sure there is a way to close this issue
My mic fully stopped working as well, how do I reverse the process or whatever?
@Parkourist I figured out how to fix the problem. Looking at the source code, what the script does is it uses pactl to mute your mic, you can undo by first typing pactl list sources
and it will show all your input audio sources, find which number source the microphone you chose was, 0, 1, 2, 3, etc. then type pactl get-source-mute #
(replace hashtag with source number) and all this tells you if the microphone is muted or not as confirmation, you can also just read the status from the pactl list sources tab. If you confirm the microphone is muted then you can pactl set-source-mute # 0
the 0 is to turn off while 1 would mean to turn on mute. Hope this helps you