Merge pull request #1 from fiveop/master
(Try to) prevent skipping images
This commit is contained in:
commit
691ed69b74
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||||
|
|
Reference in a new issue