about summary refs log tree commit diff stats
path: root/hm/soispha/conf/yambar/scripts/mpd_song_name.sh
blob: b251619ba9ece249ab0130a1244b06eba2b50f2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env dash

# shellcheck source=/dev/null
SHELL_LIBRARY_VERSION="2.0.13" . %SHELL_LIBRARY_PATH

while true; do
    state="$(mpc status '%state%')"

    if [ "$state" = "playing" ]; then
        song="$(mpc --format '[[%artist% - ]%title%]|[%file%]' current)"
        echo "playing|bool|true"
        echo "song|string|$song"
    else
        echo "playing|bool|false"
    fi
    echo "" # commit

    sleep 2
done

# vim: ft=sh