audio-share-discord-linux
audio-share-discord-linux copied to clipboard
HOW TO UNMUTE YOUR MICROPHONE
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