dotfiles-remastered/.config/eww/modules/volume/scroll-volume.sh

9 lines
161 B
Bash
Raw Normal View History

2023-11-26 23:34:43 +00:00
#!/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