commit e90496cbab6adf9bf236e5aa9fb6658e8950eb78
parent 94e1d9c36927008a7820880e7e76af89fd2633a5
Author: Frederic Cambus <fcambus@users.sourceforge.net>
Date: Mon, 28 Oct 2013 22:37:42 +0100
Adding Snow icon
Diffstat:
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/ansiweather b/ansiweather
@@ -6,7 +6,7 @@
# https://github.com/fcambus/ansiweather #
# #
# Created: 2013/08/29 #
-# Last Updated: 2013/10/19 #
+# Last Updated: 2013/10/28 #
# #
# AnsiWeather is released under the BSD 3-Clause license. #
# See LICENSE file for details. #
@@ -73,6 +73,8 @@ 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 "\033[37;1m\xe2\x96\x92")
+snow=$(get_config "snow" || echo "\033[37;1m\xe2\x9d\x84")
+
###[ Check if jq is installed ]###############################################
@@ -160,6 +162,9 @@ then
Fog)
icon="$fog "
;;
+ Snow)
+ icon="$snow "
+ ;;
esac
fi