1
0
mirror of https://github.com/Foltik/dotfiles synced 2024-11-24 12:26:05 -05:00
dotfiles/cfg/i3blocks/laptop/blocks/audio

20 lines
457 B
Plaintext
Raw Normal View History

2017-07-26 14:00:04 -04:00
#!/bin/bash
# Left click
if [[ "${BLOCK_BUTTON}" -eq 1 ]]; then
pactl set-sink-volume 0 +5%
# Middle click
elif [[ "${BLOCK_BUTTON}" -eq 2 ]]; then
pactl set-sink-mute 0 toggle
# Right click
elif [[ "${BLOCK_BUTTON}" -eq 3 ]]; then
pactl set-sink-volume 0 -5%
fi
volume=$(pactl list sinks | grep '^[[:space:]]Volume:' | \
head -n $(( $SINK + 1 )) | tail -n 1 | sed -e 's,.* \([0-9][0-9]*\)%.*,\1,')
echo "${volume}%"
echo "${volume}%"
echo ""