cdwmblocks/blocks.def/volume.sh

63 lines
1.2 KiB
Bash
Executable File

#!/bin/sh
ICONlow="🔈"
ICONmid="🔉"
ICONhigh="🔊"
ICONmute="🔇"
ICONspeakermute="🔕"
ICONspeaker="🔔"
ICONheadphone="🎧"
#SINKHDMI=alsa_output.pci-0000_01_00.1.hdmi-stereo-extra1
SINKHDMI=alsa_output.pci-0000_01_00.1.hdmi-stereo
SINKANALOG=alsa_output.pci-0000_00_1b.0.analog-stereo
#alsa_output.pci-0000_00_1b.0.analog-surround-51
checkDefaultSink() {
if [ -v LAPTOP ]; then
SINK=$SINKANALOG
return
fi
PACTLOUTPUT="$(pactl get-default-sink)"
if echo $PACTLOUTPUT | grep -q "$SINKANALOG"; then
SINK=$SINKANALOG
elif echo $PACTLOUTPUT | grep -q "$SINKHDMI"; then
SINK=$SINKHDMI
fi
}
VOLUME=$(pactl get-sink-volume @DEFAULT_SINK@ | awk '{printf $5}' | sed s/%//)
MUTE=$(pactl get-sink-mute @DEFAULT_SINK@ | awk '{printf $2}')
checkDefaultSink
getIcon() {
if [ "$MUTE" = "yes" ]; then
ICON=$ICONmute
else
if [ "$VOLUME" -gt "50" ]; then
ICON=$ICONhigh
elif [ "$VOLUME" -gt "20" ]; then
ICON=$ICONmid
else
ICON=$ICONlow
fi
fi
if [ -v LAPTOP ]; then
printf "$ICON %s" "$VOLUME%"
return
fi
if [ "$SINK" = "$SINKHDMI" ]; then
printf "$ICON %s" "$VOLUME%"
elif [ "$SINK" = "$SINKANALOG" ]; then
printf "$ICON %s" "$VOLUME% $ICONheadphone"
fi
}
getIcon