aboutsummaryrefslogtreecommitdiff
path: root/dmenu-musicpick
blob: f960ca4e3a2fc7a686f9adce29fe3de7518e79ab (plain)
1
2
3
4
5
6
#!/usr/bin/env bash
# relative path to mpd's music directory *must* be used. absolute path will not be read by mpd.
cd ~/Music

file="$(mpc listall | dmenu -i -l 1)" || exit 0
notify-send "Playing $file" && mpc insert "$file" && mpc next >/dev/null