Last active
December 24, 2020 14:35
-
-
Save Sebiann/294f2973bf9e433d893185e37af2a16a to your computer and use it in GitHub Desktop.
Script for Jackbox on linux, (doesnt work yet)
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/sh | |
# Setup the 'Jackbox' sink | |
pacmd load-module module-null-sink sink_name=jackbox; | |
pacmd update-sink-proplist jackbox device.description=\"Jackbox\"; | |
pacmd update-source-proplist jackbox.monitor device.description=\"Monitor of Jackbox\"; | |
# Setup the 'Jack Mic' sink | |
pacmd load-module module-null-sink sink_name=jack_mic; | |
pacmd update-sink-proplist jack_mic device.description=\"Jack Mic\"; | |
pacmd update-source-proplist jack_mic.monitor device.description=\"Monitor of Jack Mic\"; | |
# Loop the monitor of Jackbox to the system sounds | |
pacmd load-module module-loopback sink=0 source=jackbox.monitor; | |
# Loop the monitor of Jackbox to the Jack Mic | |
pacmd load-module module-loopback sink=jack_mic source=jackbox.monitor; | |
# Loop Real Mic too Jack Mic | |
pacmd load-module module-loopback sink=jack_mic source=(IDK UR MIC); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment