fixed less colors

This commit is contained in:
spinach 2023-02-27 10:05:13 -05:00
parent 9ef4bec1c7
commit cb8bdd3e43

View File

@ -277,9 +277,9 @@ display_forecast() {
echo "Loading weather..."
if [[ -n "$PRETTY" ]] ; then
# nerdfont
curl -fsSL "https://v2d.wttr.in/${LAT},${LON}?F" | less
curl -fsSL "https://v2d.wttr.in/${LAT},${LON}?F" | less -R
else
curl -fsSL "https://wttr.in/${LAT},${LON}?F" | less
curl -fsSL "https://wttr.in/${LAT},${LON}?F" | less -R
fi
exit 0