dotfiles/dot_config/ncmpcpp/executable_notify.sh

13 lines
401 B
Bash

#!/usr/bin/env sh
if ! command -v mpc >/dev/null 2>&1; then
exit 1
fi
if [ $(uname -s) = "Darwin" ]; then
terminal-notifier -title "Now playing" -message "$(mpc --format '%title% \n%artist% - %album%' current)" -group "org.musicpd" > /dev/null
fi
if [ $(uname -s) = "Linux" ]; then
notify-send "Now playing" "$(mpc --format '%title% \n%artist% - %album%' current)" -u low -t 5000 -a "mpd"
fi