feat: strip down player script

This commit is contained in:
David JULIEN 2021-02-16 23:54:37 +01:00
parent f566ff7d8f
commit 87e453c7a8
1 changed files with 5 additions and 7 deletions

View File

@ -10,15 +10,13 @@
######################################################################
if [ "$1" = "stop" ]; then
mpc $1
dunstify -r 10010 -u "normal" "MPD" "Music stopped"
MPC_FORMAT="Artist: <b>%artist%</b> \nTitle: %title% \nAlbum: %album%"
out="$(mpc --format "$MPC_FORMAT" $1 | head -n-1)"
if [ -z "$out" ]; then
out="No music"
else
MPC_FORMAT="Artist: <b>%artist%</b> \nTitle: %title% \nAlbum: %album%"
out="$(mpc --format "$MPC_FORMAT" $1 | head -n-1)"
path="$(mpc --format %file% | head -n1 | awk -F '/' '{ printf "music/%s/%s/cover.png\n", $1,$2 }')"
dunstify -r 10010 -u "normal" -i "$HOME/$path" "MPD" "$out"
fi
dunstify -r 10010 -u "normal" -i "$HOME/$path" "MPD" "$out"
kill -39 $(pidof dwmblocks)