Unverified Commit 298d7566 authored by Cyril Raffatelli's avatar Cyril Raffatelli Committed by GitHub

Add playerctl support (#1475)

parent d14dc2d5
......@@ -501,6 +501,7 @@ disk_percent="on"
# mpd
# muine
# netease-cloud-music
# playerctl
# pogo
# pragha
# qmmp
......@@ -2656,6 +2657,7 @@ get_song() {
"muine"
"netease-cloud-music"
"plasma-browser-integration"
"playerctl"
"pogo"
"pragha"
"qmmp"
......@@ -2792,6 +2794,10 @@ get_song() {
/"title"/ {t=$4} END {print a " \n" b " \n" t}')"
;;
"playerctl"*)
song="$(playerctl metadata --format '{{ artist }} \n{{ album }} \n{{ title }}')"
;;
*) mpc &>/dev/null && song="$(mpc -f '%artist% \n%album% \n%title%' current)" || return ;;
esac
......
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