commit 97dfdac00a9748d649bc93f0f1236a170d946692
parent 3921738774f1a2788c2a4151bab5dbf7ec703ca1
Author: Frederic Cambus <fred@statdns.com>
Date: Tue, 20 Jun 2017 15:32:20 +0200
Unicode symbols display is now off by default
Diffstat:
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
@@ -177,7 +177,7 @@ Unicode capable display) or `false`.
symbols:true
-Default: `true`
+Default: `false`
Symbols can be configured or replaced by custom text using the following
configuration variables: `sun`, `moon`, `clouds`, `rain`, `fog`, `mist`,
diff --git a/ansiweather b/ansiweather
@@ -7,7 +7,7 @@
# https://github.com/fcambus/ansiweather #
# #
# Created: 2013-08-29 #
-# Last Updated: 2017-02-16 #
+# Last Updated: 2017-06-19 #
# #
# AnsiWeather is released under the BSD 2-Clause license. #
# See LICENSE file for details. #
@@ -102,7 +102,7 @@ fi
[ -z "$ansi" ] && ansi=$(get_config "ansi" || echo true)
# Display symbols: "true" or "false" (requires a Unicode capable display)
-[ -z "$symbols" ] && symbols=$(get_config "symbols" || echo true)
+[ -z "$symbols" ] && symbols=$(get_config "symbols" || echo false)
# Show wind: "true" or "false"
[ -z "$show_wind" ] && show_wind=$(get_config "show_wind" || echo true)
diff --git a/ansiweatherrc.example b/ansiweatherrc.example
@@ -6,7 +6,7 @@ location:Rzeszow,PL
units:metric
forecast:0
ansi:true
-symbols:true
+symbols:false
show_wind:true
show_humidity:true
show_pressure:true