tmux-kanagawa/scripts/sleep_weather.sh

27 lines
453 B
Bash
Raw Normal View History

2020-04-29 17:35:35 +02:00
#!/usr/bin/env bash
#wrapper script for running weather on interval
2020-04-29 20:33:51 +02:00
fahrenheit=$1
main()
{
2020-03-16 07:15:26 +01:00
current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
$current_dir/weather.sh > $current_dir/../data/weather.txt
2020-03-16 01:20:04 +01:00
while tmux has-session &> /dev/null
do
2020-04-29 20:33:51 +02:00
$current_dir/weather.sh $fahrenheit > $current_dir/../data/weather.txt
2020-03-15 20:59:20 +01:00
if tmux has-session &> /dev/null
then
2020-03-31 21:13:42 +02:00
sleep 1200
2020-03-15 20:41:10 +01:00
else
break
fi
done
}
#run main driver function
main