11 lines
360 B
Bash
Executable File
11 lines
360 B
Bash
Executable File
#!/bin/sh
|
|
CARD=$(pactl list cards short | grep '1f.3' | awk '{print $2}')
|
|
CURRENT_SINK=$(pactl info | grep "Default Sink:")
|
|
if [[ "$CURRENT_SINK" == *"iec958"* ]]; then
|
|
pactl set-card-profile $CARD output:analog-stereo
|
|
notify-send "analog out active" -i :
|
|
else
|
|
pactl set-card-profile $CARD output:iec958-stereo
|
|
notify-send "digital out active" -i :
|
|
fi
|