This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.local/bin/player

25 lines
780 B
Bash
Executable File

#!/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: <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
kill -39 $(pidof dwmblocks)