12 lines
275 B
Bash
Executable file
12 lines
275 B
Bash
Executable file
#!/bin/sh
|
|
# Increases 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
|