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 | |
| # Start Jack daemon | |
| jack_control start | |
| # Jack -> Pulse return | |
| PAM1=$(pactl load-module module-jack-source source_name=pulse_return client_name=pulse_return connect=false) | |
| # Pulse return source -> Sink loopback | |
| PAM2=$(pactl load-module module-loopback sink=alsa_output.usb-PreSonus_AudioBox_USB_96_000000000000-00.analog-stereo source=pulse_return source_dont_move=true sink_dont_move=true) |
OlderNewer