From f63a111ba6deea1541e64e6a1fcad427d5b541e9 Mon Sep 17 00:00:00 2001 From: Breizh Date: Sat, 17 Jun 2023 12:40:59 +0200 Subject: [PATCH] Fix --- generator.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/generator.sh b/generator.sh index 2366a42..677e1c2 100755 --- a/generator.sh +++ b/generator.sh @@ -118,11 +118,6 @@ do continue fi - if [[ "$(realpath "$i")" =~ ^$root/Musique/Vidéos ]] - then - preload=none - fi - # Date de dernière modif lastmodif="$(stat -c "%y" "$i" | cut -d':' -f-2)" @@ -147,6 +142,12 @@ do then continue fi + + # Ne pas précharger Musique/Vidéos qui est trop volumineux + if [[ "$(realpath "$i")" =~ ^$root/Musique/Vidéos ]] + then + preload=none + fi # Date de dernière modif lastmodif="$(stat -c "%y" "$i" | cut -d':' -f-2)"