8 lines
157 B
Bash
Executable File
8 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
|
|
spotify_status=$(playerctl --player=mpd status 2>/dev/null)
|
|
|
|
if [ "$spotify_status" == "Playing" ]; then
|
|
playerctl --player=mpd previous
|
|
fi
|