(Try to) prevent skipping images
This commit is contained in:
parent
127bc927d8
commit
cdd92f918f
1 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
#this calls the archillect-image-get-and-display script every 10 minutes.
|
||||
while true
|
||||
do
|
||||
[[ $((10#`date +%M`%10)) == 0 ]] && ./archillect.sh
|
||||
sleep 60
|
||||
do
|
||||
[[ $((10#`date +%M`%10)) == 1 ]] && ./archillect.sh
|
||||
sleep 59
|
||||
done
|
||||
|
|
Reference in a new issue