forked from shihaam/starlink_status
slightly cleaner code
This commit is contained in:
parent
b69df2c87f
commit
c6e4b5c26a
18
bot.sh
18
bot.sh
@ -108,22 +108,8 @@ curl -s "https://api.open-meteo.com/v1/forecast?latitude=${LATITUDE}&longitude=$
|
||||
weather_condition=$(jq '.current_weather.weathercode' "$weather_file")
|
||||
is_day=$(jq '.current_weather.is_day' "$weather_file")
|
||||
case $weather_condition in
|
||||
0)
|
||||
if [ "$is_day" = "1" ]
|
||||
then
|
||||
current_weather="☀️ Clear Sky"
|
||||
else
|
||||
current_weather="🌙 Clear Sky"
|
||||
fi
|
||||
;;
|
||||
1)
|
||||
if [ "$is_day" = "1" ]
|
||||
then
|
||||
current_weather="☀️ Mainly Clear"
|
||||
else
|
||||
current_weather="🌙 Mainly Clear"
|
||||
fi
|
||||
;;
|
||||
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" ;;
|
||||
|
25
day.sh
Normal file
25
day.sh
Normal file
@ -0,0 +1,25 @@
|
||||
#!/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
|
Loading…
x
Reference in New Issue
Block a user