Spotify info i Underrättelser (notification)
Postat: 17 feb 2013, 21:47
Hej,
Jag har gjort ett litet skript som skickar en underrättelse (notification) på vilken Artist, Album och låt som ljust börjat spelas i spotify.
Så jag tänkte att jag skulle dela med mig av det
Edit: obs! Fungerar bara om man installerar Spotify for Linux alltså inte om man kör Spotify i Wine.
Jag har gjort ett litet skript som skickar en underrättelse (notification) på vilken Artist, Album och låt som ljust börjat spelas i spotify.
Så jag tänkte att jag skulle dela med mig av det

Kod: Markera allt
#!/bin/bash
# --------------------------------------
#
# Author: Jonas Lindberg
# Contact: <badomen02 gmail>
# Created: February 17, 2013
#
# Purpose: Pop up notification of what Spotify is playing.
# Usage: Start Spotify then start this script. This script will self exit when spotify exits.
# Dependencies: libnotify-bin, sudo apt-get install libnotify-bin to install it.
# Troubleshooting: Test this command notify-send "<b>Artist</b>" "Album" in a terminal. Try to remove the <b></b> tags and run it again.
#
# This script is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY.
#
# --------------------------------------
echo "Started"
title_playing=""
# It will run as long spotify is runing.
while [ "$(pidof spotify)" ];do
title_compare="$(dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.freedesktop.DBus.Properties.Get string:'org.mpris.MediaPlayer2.Player' string:'Metadata' 2>/dev/null |egrep -A 1 "title"|egrep -v "title"|cut -b 44-|cut -d '"' -f 1|egrep -v ^$)"
# Just make a notify when a new song is played
if [ "$title_playing" != "$title_compare" ];then
album="$(dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.freedesktop.DBus.Properties.Get string:'org.mpris.MediaPlayer2.Player' string:'Metadata' 2>/dev/null |egrep -A 2 "album"|egrep -v "album"|egrep -v "array"|cut -b 44-|cut -d '"' -f 1|egrep -v ^$)"
artist="$(dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.freedesktop.DBus.Properties.Get string:'org.mpris.MediaPlayer2.Player' string:'Metadata' 2>/dev/null |egrep -A 2 "artist"|egrep -v "artist"|egrep -v "array"|cut -b 27-|cut -d '"' -f 1|egrep -v ^$)"
title_playing="$(dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.freedesktop.DBus.Properties.Get string:'org.mpris.MediaPlayer2.Player' string:'Metadata' 2>/dev/null |egrep -A 1 "title"|egrep -v "title"|cut -b 44-|cut -d '"' -f 1|egrep -v ^$)"
# Checks that the artist is not empty and that the title doesn't start with Spotify, i.e. is advertising.
if [ -n "$artist" ]; then
if [[ $title_playing != Spotify* ]]; then
notify-send "<b>$artist</b>" "<b>Album:</b> $album
<b>Title:</b> $title_playing"
fi
fi
fi
# How often in seconds it will update
sleep 5
done
echo "Ended"