home/bin/music.sh
2021-01-24 15:16:13 +01:00

19 lines
379 B
Bash
Executable File

#! /bin/bash
service=""
spotifyIsUp=`pidof spotify`
rhythmboxIsUp=`pidof rhythmbox`
if [ "${spotifyIsUp}" ]; then
echo "Spotify is up!"
service="spotify"
elif [ "${rhythmboxIsUp}" ]; then
echo "Rhythmbox is up!"
service="rhythmbox"
else
echo "All down…"
exit -1
fi
qdbus org.mpris.MediaPlayer2.${service} /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.$1