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
2018-02-19 17:57:23 +01:00

8 lines
174 B
Bash

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