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

count=${1:-25}

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