Created
June 25, 2017 19:32
-
-
Save rettichschnidi/f7a6e1179ccf5caa3b6291df4e7f73be to your computer and use it in GitHub Desktop.
This file contains 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 | |
set -e | |
readonly filename="/tmp/$(whoami)-usb-sound" | |
if [ -f ${filename} ]; then | |
rm "${filename}" | |
pacmd set-card-profile 0 output:analog-stereo+input:analog-stereo && pacmd set-card-profile 1 off | |
else | |
touch "${filename}" | |
pacmd set-card-profile 1 output:analog-stereo+input:analog-stereo && pacmd set-card-profile 0 off | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment