Skip to content

Instantly share code, notes, and snippets.

View veebch's full-sized avatar

VEEB Projects veebch

View GitHub Profile
@veebch
veebch / gist:e925cbd977ee205c0e495c98a2791352
Last active November 16, 2024 23:56
A single command to invoke a fzf interface that generates playlists from a subset of music added to a directory in the last 10 days
# Find directories in music folder modified in last 240 hours
fd . '/path/to/music/' \
--changed-within "240h" \
--min-depth 2 \
-d 2 \
| \
# Remove any paths containing @ symbol (Synology NAS quirk)
rg -v '@' \
| \