Commit 73f381e8 authored by Dylan Araps's avatar Dylan Araps Committed by GitHub

Merge pull request #556 from mstraube/exaile

Add support for Exaile music player
parents e947dde7 7d284e4b
...@@ -1187,7 +1187,7 @@ get_memory() { ...@@ -1187,7 +1187,7 @@ get_memory() {
get_song() { get_song() {
# This is absurdly long. # This is absurdly long.
player="$(ps x | awk '!(/awk|Helper|Cache/) && /mpd|cmus|mocp|spotify|Google Play|iTunes.app|rhythmbox|banshee|amarok|deadbeef|audacious|xmms2d|gnome-music|lollypop|clementine|pragha/ {printf $5 " " $6; exit}')" player="$(ps x | awk '!(/awk|Helper|Cache/) && /mpd|cmus|mocp|spotify|Google Play|iTunes.app|rhythmbox|banshee|amarok|deadbeef|audacious|xmms2d|gnome-music|lollypop|clementine|pragha|exaile/ {printf $5 " " $6; exit}')"
get_song_dbus() { get_song_dbus() {
# Multiple players use an almost identical dbus command to get the information. # Multiple players use an almost identical dbus command to get the information.
...@@ -1250,6 +1250,12 @@ get_song() { ...@@ -1250,6 +1250,12 @@ get_song() {
title="$(pragha -c | awk -F':' '/title/ {print $2}')" title="$(pragha -c | awk -F':' '/title/ {print $2}')"
song="$artist - $title" song="$artist - $title"
;; ;;
"exaile"*)
song="$(dbus-send --print-reply --dest=org.exaile.Exaile /org/exaile/Exaile \
org.exaile.Exaile.Query | awk -F':|,' '{printf $6 " -" $4}')"
song="${song:3}"
;;
esac esac
# Display Artist and Title on separate lines. # Display Artist and Title on separate lines.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment