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

# shellcheck source=/dev/null
SHELL_LIBRARY_VERSION="2.0.9" . %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