2020-04-29 17:35:35 +02:00
|
|
|
#!/usr/bin/env bash
|
2020-03-15 05:13:46 +01:00
|
|
|
|
|
|
|
#wrapper script for running weather on interval
|
|
|
|
|
2020-04-29 20:33:51 +02:00
|
|
|
fahrenheit=$1
|
|
|
|
|
2020-08-03 00:38:49 +02:00
|
|
|
LOCKFILE=/tmp/.dracula-tmux-weather.lock
|
|
|
|
|
|
|
|
ensure_single_process()
|
|
|
|
{
|
|
|
|
# check for another running instance of this script and terminate it if found
|
|
|
|
[ -f $LOCKFILE ] && ps -p "$(cat $LOCKFILE)" -o cmd= | grep -F " ${BASH_SOURCE[0]}" && kill "$(cat $LOCKFILE)"
|
|
|
|
echo $$ > $LOCKFILE
|
|
|
|
}
|
|
|
|
|
2020-03-15 05:13:46 +01:00
|
|
|
main()
|
|
|
|
{
|
2020-08-03 00:38:49 +02:00
|
|
|
ensure_single_process
|
|
|
|
|
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-08-03 00:38:49 +02:00
|
|
|
|
2020-03-16 01:20:04 +01:00
|
|
|
while tmux has-session &> /dev/null
|
2020-03-15 05:13:46 +01:00
|
|
|
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
|
2020-03-15 05:13:46 +01:00
|
|
|
done
|
2020-08-03 00:38:49 +02:00
|
|
|
|
|
|
|
rm $LOCKFILE
|
2020-03-15 05:13:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#run main driver function
|
|
|
|
main
|