summaryrefslogtreecommitdiff
path: root/scripts/mpc_add_recent.sh
blob: 7465e0ef7ee1f3d04bacbaddcc8604db609e20dc (plain)
1
2
3
4
5
6
7
#!/bin/sh
# add recently added files to the playlist

count=${1:-10}

cd ~/music
find . -type f -print0 | xargs -0 stat -c"%Y %n" | sort -n | tail -${count} |cut -d' ' -f2- | while read -r line; do mpc insert "${line#./}"; done