Files
misc/bin/volumectl
2025-07-02 00:07:49 -07:00

13 lines
284 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)