8 lines
187 B
Bash
Executable file
8 lines
187 B
Bash
Executable file
#!/bin/sh
|
|
# Increases volume by 5%
|
|
|
|
amixer set Master 5%+ unmute
|
|
|
|
VOLSTAT="$(volstat)"
|
|
notify-send -u low --replace-id=10 "$VOLSTAT" 2>/dev/null
|
|
kill -44 "$(pidof dwmblocks)" 2>/dev/null
|