add scripts and config

This commit is contained in:
2023-07-12 17:02:27 +07:00
parent 520fb7cd75
commit 4b1d0cd562
12 changed files with 365 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
LB=$(pidof pw-loopback)
if [[ $LB > 0 ]]; then
killall pw-loopback
else
pw-loopback --capture "alsa_input.usb-AVerMedia_Technologies__Inc._Live_Gamer_MINI_5203206100308-03.pro-input-0" &
fi
exit 0