Music: Added support for GNOME Music
This commit is contained in:
parent
57d5273806
commit
7e445aa062
1 changed files with 12 additions and 1 deletions
13
neofetch
13
neofetch
|
@ -1076,7 +1076,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/ {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/ {printf $5 " " $6; exit}')"
|
||||
|
||||
case "${player/*\/}" in
|
||||
"mpd"*)
|
||||
|
@ -1160,6 +1160,17 @@ get_song() {
|
|||
song="$(audtool current-song)"
|
||||
;;
|
||||
|
||||
"gnome-music"*)
|
||||
# Hello dbus my old friend.
|
||||
song="$(\
|
||||
dbus-send --print-reply --dest=org.mpris.MediaPlayer2.GnomeMusic /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
|
||||
|
||||
|
|
Loading…
Reference in a new issue