#!/bin/sh # make sure mpd is running sv check "$HOME/.local/share/service/mpd" > /dev/null || exit 1 # set DISPLAY environment variable so notify send doesn't complain export DISPLAY=:0 while notify-send -r 18 "Now playing" "$(mpc current --wait)" do :; done