use switch and filter vol better
This commit is contained in:
@ -2,10 +2,13 @@
|
||||
CARD=$(pactl list cards short | grep '1f.3' | awk '{print $2}')
|
||||
CURRENT_SINK=$(pactl info | grep "Default Sink:")
|
||||
dunstctl close-all
|
||||
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
|
||||
case $CURRENT_SINK in
|
||||
*iec958*)
|
||||
pactl set-card-profile $CARD output:analog-stereo
|
||||
notify-send "analog out active" -i :
|
||||
;;
|
||||
*)
|
||||
pactl set-card-profile $CARD output:iec958-stereo
|
||||
notify-send "digital out active" -i :
|
||||
;;
|
||||
esac
|
||||
|
||||
12
bin/st-vol
12
bin/st-vol
@ -1,7 +1,9 @@
|
||||
#!/bin/sh
|
||||
VOLUME=$(wpctl get-volume @DEFAULT_SINK@)
|
||||
if [ $VOLUME =~ "MUTED" ]; then
|
||||
echo " MUTED"
|
||||
fi
|
||||
VOLUME=$(echo $VOLUME | sed s/"Volume: 0."//g)
|
||||
echo " $VOLUME"
|
||||
case $VOLUME in
|
||||
*MUTED*)
|
||||
echo " MUTED";;
|
||||
*)
|
||||
VOLUME=$(echo $VOLUME | awk '{print $2}' | sed 's/^0//;s/\.//')
|
||||
echo " $VOLUME";;
|
||||
esac
|
||||
|
||||
Reference in New Issue
Block a user