From 0a70754ef1c82d8aa3ea89ddd77f1c27da99c349 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Tue, 24 Jan 2017 10:11:35 +1100 Subject: [PATCH] Old Options: Fix birthday_time not working --- neofetch | 3 +++ 1 file changed, 3 insertions(+) diff --git a/neofetch b/neofetch index 9e05137a..59e93b35 100755 --- a/neofetch +++ b/neofetch @@ -3504,6 +3504,9 @@ old_options() { # Fahrenheit support was added to CPU so the options were changed. [[ "$cpu_temp" == "on" ]] && { err "Config: cpu_temp='on' is deprecated, use cpu_temp='C' or 'F' instead."; cpu_temp="C"; } + + # Birthday was renamed to Install Date in 3.0 + [[ -n "$birthday_time" ]] && { err "Config: \$birthday_time is deprecated, use \3install_time instead."; install_time="$birthday_time"; } } cache_uname() {