12 lines
233 B
Bash
Executable file
12 lines
233 B
Bash
Executable file
#!/bin/sh
|
|
# Mute
|
|
|
|
amixer -q set Master toggle
|
|
|
|
# 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
|