tag_audio: skip dirs which are probably not albums

This commit is contained in:
tea 2024-05-27 22:05:34 +02:00
parent 0cd6ddd669
commit f1ed0fa6a0
No known key found for this signature in database

View File

@ -9,6 +9,12 @@ function _tag_audio_extra_tags() {
} }
for dir in ${@}; do for dir in ${@}; do
[[ -d ${dir} ]] || continue
if [[ "${dir}" == "singles" ]] || [[ "${dir}" == "misc" ]]; then
print -Pu2 "%B%F{yellow}skipping ${dir}%f%b"
continue
fi
picard ${dir} picard ${dir}
mksmol ${dir} mksmol ${dir}