DeadlyByNite

Results 3 comments of DeadlyByNite

It should output -17 meaning the sun is 17 degrees below the horizon.

Actually looking closer, my timezone offset is -6 but line #5 of sun.py reads timezone = 6 ... Making it a negative value, from 6 to -6 definitely improves the...

I believe a fix to install.sh would be to fix line 304 from `sed -i -e "s/change_latitude/${lat}/g;s/change_longitude/${lon}/g;s/change_tz/$(echo "$tzoffset * -1" | bc)/g" "sun.py"` to `sed -i -e "s/change_latitude/${lat}/g;s/change_longitude/${lon}/g;s/change_tz/${tzoffset}/g" "sun.py"` Not...