This repository has been archived on 2024-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
archillect-display/timer-wrapper.sh

8 lines
175 B
Bash
Raw Normal View History

2018-02-11 23:38:37 +01:00
#!/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
done