hyprmoonarch/home/config/polybar/modules/polybar-playerctl-playpause.sh
2024-01-08 20:50:29 +01:00

18 lines
240 B
Bash
Executable File

#!/bin/sh
PLAYER="spotify"
if [ "$(pidof "$PLAYER")" != "" ];
then
if [ "$(playerctl --player="$PLAYER" status)" == "Playing" ];
then
playerctl --player="$PLAYER" pause
else
playerctl --player="$PLAYER" play
fi
else
echo ""
fi