2020-03-15 00:57:01 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
|
2020-04-29 20:33:51 +02:00
|
|
|
fahrenheit=$1
|
|
|
|
|
2020-07-14 06:02:47 +02:00
|
|
|
load_request_params()
|
|
|
|
{
|
|
|
|
city=$(curl -s https://ipinfo.io/city 2> /dev/null)
|
|
|
|
region=$(curl -s https://ipinfo.io/region 2> /dev/null)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fetch_weather_information()
|
2020-03-15 03:21:31 +01:00
|
|
|
{
|
2020-07-06 02:22:47 +02:00
|
|
|
display_weather=$1
|
2020-07-14 06:02:47 +02:00
|
|
|
# it gets the weather condition textual name (%C), the temperature (%t), and the location (%l)
|
|
|
|
curl -sL curl wttr.in\?format="+%C+%t$display_weather"
|
2020-03-15 03:21:31 +01:00
|
|
|
}
|
|
|
|
|
2020-07-06 02:22:47 +02:00
|
|
|
#get weather display
|
2020-03-15 03:21:31 +01:00
|
|
|
display_weather()
|
|
|
|
{
|
2020-07-06 02:22:47 +02:00
|
|
|
if $fahrenheit; then
|
|
|
|
display_weather='&u' # for USA system
|
2020-03-15 03:21:31 +01:00
|
|
|
else
|
2020-07-06 02:22:47 +02:00
|
|
|
display_weather='&m' # for metric system
|
2020-03-15 03:21:31 +01:00
|
|
|
fi
|
2020-07-14 06:02:47 +02:00
|
|
|
weather_information=$(fetch_weather_information $display_weather)
|
|
|
|
|
|
|
|
weather_condition=$(echo $weather_information | awk '{print $1;}') # Sunny, Snow, etc
|
|
|
|
temperature=$(echo $weather_information | awk '{print $2;}') # +31°C, -3°F, etc
|
|
|
|
unicode=$(forecast_unicode $weather_condition)
|
|
|
|
|
|
|
|
echo "$unicode ${temperature/+/}" # remove the plus sign to the temperature
|
|
|
|
}
|
|
|
|
|
|
|
|
forecast_unicode()
|
|
|
|
{
|
|
|
|
weather_condition=$1
|
|
|
|
|
|
|
|
if [[ $weather_condition =~ 'Snow' ]]; then
|
|
|
|
echo '❄ '
|
|
|
|
elif [[ (($weather_condition =~ 'Rain') || ($weather_condition =~ 'Shower')) ]]; then
|
|
|
|
echo '☂ '
|
|
|
|
elif [[ (($weather_condition =~ 'Overcast') || ($weather_condition =~ 'Cloud')) ]]; then
|
|
|
|
echo '☁ '
|
|
|
|
elif [[ $weather_condition = 'NA' ]]; then
|
|
|
|
echo ''
|
|
|
|
else
|
|
|
|
echo '☀ '
|
|
|
|
fi
|
2020-03-15 03:21:31 +01:00
|
|
|
}
|
2020-03-15 00:57:01 +01:00
|
|
|
|
|
|
|
main()
|
|
|
|
{
|
2020-07-14 06:02:47 +02:00
|
|
|
load_request_params
|
2020-03-15 05:13:46 +01:00
|
|
|
# process should be cancelled when session is killed
|
2020-03-15 03:21:31 +01:00
|
|
|
if ping -q -c 1 -W 1 ipinfo.io &>/dev/null; then
|
2020-07-14 06:02:47 +02:00
|
|
|
echo "$(display_weather) $city, $region"
|
2020-03-15 03:21:31 +01:00
|
|
|
else
|
|
|
|
echo "Location Unavailable"
|
|
|
|
fi
|
2020-03-15 00:57:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#run main driver program
|
|
|
|
main
|