8 lines
179 B
Bash
Executable file
8 lines
179 B
Bash
Executable file
#!/bin/sh
|
|
# Increases volume by 5%,
|
|
# then restarts statusbar module
|
|
|
|
amixer set Master 5%+ unmute
|
|
$HOME/.config/scripts/status/volstat
|
|
|
|
kill -44 "$(pidof dwmblocks)" 2>/dev/null
|