You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash |
|
|
|
SINK='alsa_input.usb-Focusrite_Scarlett_2i2_USB_Y84Q6XE0693B8F-00.analog-stereo' |
|
SOURCE='alsa_output.usb-Focusrite_Scarlett_2i2_USB_Y84Q6XE0693B8F-00.analog-stereo.monitor' |
|
|
|
jack_control stop |
|
|
|
pacmd set-default-source "$SOURCE" |
|
pacmd set-default-sink "$SINK" |
|
|
|
pulseaudio -k
|
|
|