diff --git a/timer-wrapper.sh b/timer-wrapper.sh index 35d07e2..953dfdf 100644 --- a/timer-wrapper.sh +++ b/timer-wrapper.sh @@ -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