8 lines
217 B
Plaintext
Executable File
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
|