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

8 lines
166 B
Bash
Executable File

#!/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