mirror of
https://github.com/Foltik/dotfiles
synced 2024-11-24 12:26:05 -05:00
20 lines
457 B
Bash
Executable File
20 lines
457 B
Bash
Executable File
#!/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 ""
|