blob: c8eca4053d8059ef7fe1ff27200a449e4108d019 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/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
|