From 21201a1abd647a13ce7b6614e975ad75893cea75 Mon Sep 17 00:00:00 2001 From: Muhammad Herdiansyah Date: Thu, 24 Nov 2016 22:01:28 +0700 Subject: [PATCH] Music: Added support for Clementine --- neofetch | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/neofetch b/neofetch index 555bbcd8..c7b7cc41 100755 --- a/neofetch +++ b/neofetch @@ -1081,7 +1081,7 @@ get_memory() { get_song() { # This is absurdly long. - player="$(ps x | awk '!(/awk|Helper|Cache/) && /mpd|cmus|mocp|spotify|Google Play|iTunes.app|rhythmbox|banshee|amarok|deadbeef|audacious|gnome-music|lollypop/ {printf $5 " " $6; exit}')" + player="$(ps x | awk '!(/awk|Helper|Cache/) && /mpd|cmus|mocp|spotify|Google Play|iTunes.app|rhythmbox|banshee|amarok|deadbeef|audacious|gnome-music|lollypop|clementine/ {printf $5 " " $6; exit}')" case "${player/*\/}" in "mpd"*) @@ -1187,6 +1187,17 @@ get_song() { song="${song% - }" ;; + "clementine"*) + # dbus + song="$( + dbus-send --print-reply --dest=org.mpris.clementine /org/mpris/MediaPlayer2 \ + org.freedesktop.DBus.Properties.Get string:'org.mpris.MediaPlayer2.Player' string:'Metadata' |\ + awk -F 'string "' '/string|array/ {printf "%s",$2; next}{print ""}' |\ + awk -F '"' '/artist|title/ {printf $2 " - "}' + )" + song="${song% - }" + ;; + *) song="Not Playing" ;; esac