You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MUTESTATUS="$(pactl list sinks | sed -En '/Sink #'"${SINK}"'/,+8p' | sed -En 's/Mute: +(.*)/\1/p' | xargs)"
if [ "${MUTESTATUS}" = "yes" ]; then
echo 1
elif [ "${MUTESTATUS}" = "no" ]; then
echo 0
else
echo -1
fi
else
read -r left right <<< "$(pactl list sinks | sed -En '/Sink #'${SINK}'/,+9p' | sed -En 's/Volume:.+\/ +([0-9]+)\%.+\/ +([0-9]+)\%.*$/\1 \2/p' | xargs)"