Files
misc/bin/volumectl
2025-12-18 14:12:29 -08:00

13 lines
275 B
Bash
Executable File

#!/bin/sh
INCREMENT="2"
if [ "$1" = "up" ]; then
wpctl set-volume @DEFAULT_SINK@ $INCREMENT%+
elif [ "$1" = "down" ]; then
wpctl set-volume @DEFAULT_SINK@ $INCREMENT%-
elif [ "$1" = "mute" ]; then
wpctl set-mute @DEFAULT_SINK@ toggle
fi
kill -n 35 $(pidof dwmblocks)