Taylor Bockman
7 years ago
2 changed files with 16 additions and 1 deletions
@ -0,0 +1,15 @@
|
||||
#!/usr/bin/bash |
||||
|
||||
# Simple script for configuring the arctis 7 headset in Linux. |
||||
# If the script runs successfully, you should now be able to choose |
||||
# the device in the playback menu of the mixer. |
||||
|
||||
aplay -l |
||||
|
||||
read -p "Card Number: " card_number |
||||
read -p "Device Number: " device_number |
||||
|
||||
echo "Running pacmd for device hw:$card_number,$device_number" |
||||
|
||||
pacmd load-module module-alsa-sink device=hw:$card_number:$device_number |
||||
|
Loading…
Reference in new issue