dotfiles-remastered/.config/eww/modules/volume/scroll-volume.sh
2023-11-27 00:34:43 +01:00

9 lines
161 B
Bash
Executable File

#!/bin/bash
if [[ $1 == "up" ]]; then
wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+
elif [[ $1 == "down" ]]; then
wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-
fi