dotfiles/scripts/voldown
2024-12-28 14:36:59 -06:00

12 lines
275 B
Bash
Executable file

#!/bin/sh
# Decreases volume by 5%
amixer set Master 5%- unmute | grep -o -m 1 '[0-9]*%'
#VOLSTAT="$(volstat)"
#notify-send -u low --replace-id=10 "$VOLSTAT" 2>/dev/null
DWMBLOCKS="$(pidof dwmblocks)"
if [ -n "$DWMBLOCKS" ] ; then
kill -44 "$DWMBLOCKS" 2>/dev/null
fi