From 309af33a40ef29d8e115ea44226b368288ac1f64 Mon Sep 17 00:00:00 2001 From: Salt Date: Wed, 13 Sep 2017 21:53:00 -0500 Subject: [PATCH] Polybar: Add entry for Mostly Clear to weather module --- .config/polybar/weather.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/polybar/weather.sh b/.config/polybar/weather.sh index 815b0a7b..7e001b53 100755 --- a/.config/polybar/weather.sh +++ b/.config/polybar/weather.sh @@ -18,6 +18,7 @@ if [ "$w_txt" == "Sunny" ]; then w_sym=""; elif [ "$w_txt" == "Mostly Sunny" ]; then w_sym="~"; elif [ "$w_txt" == "Showers" ]; then w_sym=""; elif [ "$w_txt" == "Clear" ]; then w_sym=""; +elif [ "$w_txt" == "Mostly Clear" ]; then w_sym="~"; elif [ "$w_txt" == "Thunderstorms" ]; then w_sym=""; elif [ "$w_txt" == "Scattered Thunderstorms" ]; then w_sym="~"; elif [ "$w_txt" == "Isolated Thundershovers" ]; then w_sym="~~";