tmux-kanagawa/scripts/sleep_weather.sh
2020-03-15 23:15:26 -07:00

24 lines
425 B
Bash
Executable file

#/usr/bin/env bash
#wrapper script for running weather on interval
main()
{
current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
$current_dir/weather.sh > $current_dir/../data/weather.txt
while tmux has-session &> /dev/null
do
$current_dir/weather.sh > $current_dir/../data/weather.txt
if tmux has-session &> /dev/null
then
sleep 1000
else
break
fi
done
}
#run main driver function
main