(Try to) prevent skipping images #1

Merged
fiveop merged 1 commit from master into master 2018-02-19 18:06:35 +01:00

View file

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