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.
|
|
|
#!/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
|
|
|
|
|