Add files via upload

This commit is contained in:
Aaron Langham 2024-07-06 14:30:58 +01:00 committed by GitHub
parent 64915a9e6b
commit 24c0f17648
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

26
soundswitcher Normal file
View File

@ -0,0 +1,26 @@
#!/bin/bash
# Get the names of the first two audio sinks
DEV1_NAME=$(pactl list sinks short | awk 'NR==1 {print $2}')
DEV2_NAME=$(pactl list sinks short | awk 'NR==2 {print $2}')
# Get the current default sink
CURRENT_SINK=$(pactl get-default-sink)
# Function to switch to the other sink
switch_sink() {
if [ "$CURRENT_SINK" = "$DEV1_NAME" ]; then
pactl set-default-sink "$DEV2_NAME"
echo "Switched to $DEV2_NAME"
else
pactl set-default-sink "$DEV1_NAME"
echo "Switched to $DEV1_NAME"
fi
}
# Print current status
echo "Current default sink: $CURRENT_SINK"
echo "Available sinks: $DEV1_NAME, $DEV2_NAME"
# Switch to the other sink
switch_sink