dot/scripts/mpc_add_recent.sh

8 lines
228 B
Bash
Executable File

#!/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