12 lines
204 B
Plaintext
Raw Normal View History

2020-06-01 13:52:49 +02:00
#!/bin/sh
# Add random song to mpd queue.
song="$(mpc listall | shuf -r -n 1)"
mpc add "$song"
notify-send -u normal "MPD added random song" "$(
mpc -f "%artist% - %title%" find filename "$song"
)"