Sfoglia il codice sorgente

Update Timezone to be Timezone Offset

Update semantics of what the "timezone" parameter actually is in this
context to make room for the actual timezone configuration.
pull/120/head
Justin Karimi 3 anni fa
parent
commit
6123376288
1 ha cambiato i file con 5 aggiunte e 3 eliminazioni
  1. +5
    -3
      install.sh

+ 5
- 3
install.sh Vedi File

@@ -262,13 +262,15 @@ read -rp "Enter your latitude (South values are negative): "
read -rp "Enter your longitude (West values are negative): "
lon=$REPLY

read -rp "Enter your timezone (Ex: -3 for Argentina time): "
timezone=$REPLY
# note: this can probably be improved by calculating this
# automatically - good for a future iteration
read -rp "Enter your timezone offset (ex: -3 for Argentina time): "
tzoffset=$REPLY

sed -i -e "s/change_latitude/${lat}/g;s/change_longitude/${lon}/g" "$HOME/.noaa.conf"
sed -i -e "s/change_latitude/${lat}/g;s/change_longitude/${lon}/g" "$HOME/.wxtoimgrc"
sed -i -e "s/change_latitude/${lat}/g;s/change_longitude/$(echo "$lon * -1" | bc)/g" "$HOME/.predict/predict.qth"
sed -i -e "s/change_latitude/${lat}/g;s/change_longitude/${lon}/g;s/change_tz/$(echo "$timezone * -1" | bc)/g" "sun.py"
sed -i -e "s/change_latitude/${lat}/g;s/change_longitude/${lon}/g;s/change_tz/$(echo "$tzoffset * -1" | bc)/g" "sun.py"

success "Install done! Double check your $HOME/.noaa.conf settings"



Caricamento…
Annulla
Salva