Files
bash-scripts/old/spotify-pause
T
2026-07-04 10:55:48 +02:00

8 lines
217 B
Plaintext
Executable File

mpd_status=$(playerctl --player=mpd status 2>/dev/null)
if [ "$mpd_status" == "Playing" ]; then
playerctl --player=mpd pause
else
playerctl --player=mpd play 2>/dev/null || playerctl --player=spotify play
fi