#!/bin/bash case $1 in "raise") pamixer -i 2 notify-send -t 250 "VOL: $(pamixer --get-volume)" pkill -RTMIN+1 i3blocks ;; "lower") pamixer -d 2 notify-send -t 250 "VOL: $(pamixer --get-volume)" pkill -RTMIN+1 i3blocks ;; "toggle_mute") pamixer --toggle-mute notify-send -t 250 "MUTE: $(pamixer --get-mute)" ;; esac