first commit
This commit is contained in:
15
.local/bin/getforecast
Executable file
15
.local/bin/getforecast
Executable file
@ -0,0 +1,15 @@
|
||||
#!/bin/sh
|
||||
# Updates weather forecast
|
||||
|
||||
FILE="$HOME/.config/.weatherreport.tmp"
|
||||
FILER="$HOME/.config/weatherreport"
|
||||
|
||||
curl -s --max-time 10 "wttr.in/$location" > $FILE
|
||||
|
||||
if [ -s "$FILE" ]
|
||||
then
|
||||
mv $FILE $FILER
|
||||
# notify-send " Weather" "The weather forecast has been updated."
|
||||
else
|
||||
rm $FILE
|
||||
fi
|
Reference in New Issue
Block a user