#!/usr/bin/env sh ###################################################################### # @author : swytch (swytch@$HOSTNAME) # @file : player # @license : GPLv3 # @created : Friday Feb 05, 2021 21:42:00 CET # # @description : simple wrapper for mpc, to send notifications ###################################################################### if [ "$1" = "stop" ]; then mpc $1 dunstify -r 10010 -u "normal" "MPD" "Music stopped" else MPC_FORMAT="Artist: %artist% \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 kill -39 $(pidof dwmblocks)