26 lines
723 B
Bash

#!/bin/bash
weather_condition=1
is_day=1
#swap_emoji(){
#if [ "$is_day" = "1" ]
#then
# echo "☀️ "
#else
# echo "🌙"
#fi
#}
#swap_emoji() { [ "$is_day" = "1" ] && echo "☀️" || echo "🌙"; }
case $weather_condition in
0) current_weather="$([ "$is_day" = "1" ] && echo "☀️" || echo "🌙") Clear Sky";;
1) current_weather="$([ "$is_day" = "1" ] && echo "☀️" || echo "🌙") Mainly Clear";;
2) current_weather="⛅ Partly Cloudy" ;;
3) current_weather="☁️ Overcast" ;;
45) current_weather="🌫️ Fog" ;;
99) current_weather="⛈️🌨️ Thunderstorm with Heavy Hail" ;;
*) current_weather="🌐 Weather Condition Not Recognized" ;;
esac
echo $current_weather