tmux-kanagawa/sleep_weather.sh

16 lines
204 B
Bash
Raw Normal View History

#/usr/bin/env bash
#wrapper script for running weather on interval
main()
{
while true
do
2020-03-15 06:30:21 +01:00
./weather.sh > ~/.tmux/plugins/tmux-dracula/weather.txt
sleep 600
done
}
#run main driver function
main