Last active
May 7, 2021 00:52
-
-
Save toryano0820/c79b8e0fcb758348c54952bd1994c2f6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
condenser=`pacmd list-sources | grep name: | grep -o "<.*Condenser.*>" | awk -F'[<>]' '{print($2)}'` | |
condenser_default=($condenser) # get first item | |
pacmd set-default-source $condenser_default | |
pacmd set-source-volume $condenser_default 0x10000 | |
pacmd unload-module module-echo-cancel 2>&1 > /dev/null | |
pacmd load-module module-echo-cancel | |
condenser=`pacmd list-sources | grep name: | grep -o "<.*Condenser.*\.echo-cancel>" | awk -F'[<>]' '{print($2)}'` | |
pacmd set-default-source $condenser | |
pacmd set-source-volume $condenser 0x10000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment