21 lines
514 B
Bash
Executable File
21 lines
514 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# blob:summary=Print a one-line weather summary for the quick settings card
|
|
# blob:hidden=true
|
|
|
|
LOCATION="Great+Falls,VA"
|
|
|
|
icon=$(blob-weather-icon 2>/dev/null)
|
|
weather=$(curl -fsS --max-time 4 "https://wttr.in/${LOCATION}?format=%l|%t|%w" 2>/dev/null | tr -d '\n')
|
|
|
|
if [[ -z $weather ]]; then
|
|
echo "Weather unavailable"
|
|
exit 1
|
|
fi
|
|
|
|
IFS='|' read -r place temperature wind <<< "$weather"
|
|
place=${place%%,*}
|
|
temperature=${temperature#+}
|
|
|
|
echo "$icon $place · Temp $temperature · Wind $wind"
|