#!/usr/bin/env dash

case $BLOCK_BUTTON in
  3) pamixer --toggle-mute ;; # right click
  4) pamixer --increase 5 ;; # scroll up
  5) pamixer --decrease 5 ;; # scroll down
esac

volume=`pamixer --get-volume-human`
echo ": $volume"