Created
September 13, 2018 09:01
-
-
Save joaomoreno/4ba133a4a03535042b509c2f094e5bdd to your computer and use it in GitHub Desktop.
Radiotray-NG Now Playing Script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
META=`dbus-send --print-reply --dest=com.github.radiotray_ng /com/github/radiotray_ng com.github.radiotray_ng.get_player_state 2> /dev/null` | |
STATUS=$(echo $META | sed 's/^.*"state"\s*:\s*"\([^"]*\)".*$/\1/') | |
if [[ "$STATUS" == "playing" ]]; then | |
ARTIST=$(echo $META | sed 's/^.*"artist"\s*:\s*"\([^"]*\)".*$/\1/') | |
TITLE=$(echo $META | sed 's/^.*"title"\s*:\s*"\([^"]*\)".*$/\1/') | |
echo "$ARTIST - $TITLE" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment