about summary refs log blame commit diff stats
path: root/modules/home/conf/yambar/scripts/mpd_song_name.sh
blob: 7d294781448ad51f73e36b6ab6c1b5181860cf72 (plain) (tree)
1
2
3
4
5
6
7
8
9

                             
                                                   
 
              
                                   
                                     
                                                                        
                                
                                                                             



                                 
           

            
#!/usr/bin/env dash

# shellcheck source=/dev/null
SHELL_LIBRARY_VERSION="2.1.2" . %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 :: $(mpc status "%currenttime%/%totaltime%")"
    else
        echo "playing|bool|false"
    fi
    echo "" # commit

    sleep 2
done

# vim: ft=sh