commit 94e1d9c36927008a7820880e7e76af89fd2633a5
parent 13ba6dae97d1afe14fc0893bf52917dabf5933f7
Author: Frederic Cambus <fcambus@users.sourceforge.net>
Date: Mon, 28 Oct 2013 22:27:16 +0100
Adding default color for Fog and tweaking spacing
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ansiweather b/ansiweather
@@ -72,7 +72,7 @@ sun=$(get_config "sun" || echo "\033[33;1m\xe2\x98\x80")
moon=$(get_config "moon" || echo "\033[36m\xe2\x98\xbd")
clouds=$(get_config "clouds" || echo "\033[37;1m\xe2\x98\x81")
rain=$(get_config "rain" || echo "\xe2\x98\x94")
-fog=$(get_config "fog" || echo "\xe2\x96\x92")
+fog=$(get_config "fog" || echo "\033[37;1m\xe2\x96\x92")
###[ Check if jq is installed ]###############################################
@@ -158,7 +158,7 @@ then
icon="$rain "
;;
Fog)
- icon="$fog "
+ icon="$fog "
;;
esac
fi