(Try to) prevent skipping images

This commit is contained in:
Philipp Matthias Schaefer 2018-02-19 17:57:23 +01:00
parent 127bc927d8
commit cdd92f918f

View file

@ -2,6 +2,6 @@
#this calls the archillect-image-get-and-display script every 10 minutes.
while true
do
[[ $((10#`date +%M`%10)) == 0 ]] && ./archillect.sh
sleep 60
[[ $((10#`date +%M`%10)) == 1 ]] && ./archillect.sh
sleep 59
done