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

8 lines
166 B
Bash
Raw Normal View History

2023-11-26 23:34:43 +00:00
#!/bin/bash
if [[ $1 == "down" ]]; then
playerctl --player=spotify,%any volume 0.05-
elif [[ $1 == "up" ]]; then
playerctl --player=spotify,%any volume 0.05+
fi