diff --git a/README.md b/README.md index 44b9f1b..5ca0dc3 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ The directory structure is as follows: 2. *scripts/* - This directory contains most of the important things to get the installation running 1. *scripts/sysinstall/* - This directory contains a number of scripts for configuring the system 2. *scripts/sysinit/* - This directory contains anything needed for system initialization - 3. *scripts/solutions/* - This directory contains any fixes that can be run for various packages + 3. *scripts/solutions/* - This directory contains any fixes that can be run for various packages - SteelSeries Arctis 7 activation script is in here 4. *scripts/lemonbar/* - This directory contains any related lemonbar scripts 5. *scripts/diagnostics/* - This directory contains scripts for helping to diagnose problems 3. *installation_instructions* - This file contains a series of command you copy and paste during install of Arch diff --git a/scripts/solutions/load_arctis.sh b/scripts/solutions/load_arctis.sh new file mode 100755 index 0000000..c60fbb1 --- /dev/null +++ b/scripts/solutions/load_arctis.sh @@ -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 +