From cb8bdd3e43b50a0610cff3a69959cb27eb407afc Mon Sep 17 00:00:00 2001 From: spinach <19keegandeppe@gmail.com> Date: Mon, 27 Feb 2023 10:05:13 -0500 Subject: [PATCH] fixed less colors --- weather | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/weather b/weather index 20a0811..57125a8 100755 --- a/weather +++ b/weather @@ -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