Images: Add $image to deprecated flags
This commit is contained in:
parent
716afbd937
commit
aba89c8aca
20
neofetch
20
neofetch
|
@ -2001,9 +2001,6 @@ get_wallpaper() {
|
||||||
|
|
||||||
# If image is an xml file, don't use it.
|
# If image is an xml file, don't use it.
|
||||||
[[ "${image/*\./}" == "xml" ]] && image=""
|
[[ "${image/*\./}" == "xml" ]] && image=""
|
||||||
|
|
||||||
# Error msg
|
|
||||||
[[ ! -f "$image" ]] && err "Image: Wallpaper detection failed, falling back to ascii mode."
|
|
||||||
}
|
}
|
||||||
|
|
||||||
get_term_size() {
|
get_term_size() {
|
||||||
|
@ -2646,13 +2643,6 @@ err() {
|
||||||
"
|
"
|
||||||
}
|
}
|
||||||
|
|
||||||
check_old_flags() {
|
|
||||||
[[ -n "$osx_buildversion" ]] && err "Config: \$osx_buildversion is deprecated, use \$distro_shorthand instead."
|
|
||||||
[[ -n "$osx_codename" ]] && err "Config: \$osx_codename is deprecated, use \$distro_shorthand instead."
|
|
||||||
[[ -n "$progress_char" ]] && err "Config: \$progress_char is deprecated, use \$progress_char_elapsed and \$progress_char_total instead."
|
|
||||||
[[ "$cpu_cores" == "on" ]] && err "Config: \$cpu_cores='on' is deprecated, use \$cpu_cores='logical|physical|off' instead."
|
|
||||||
}
|
|
||||||
|
|
||||||
get_script_dir() {
|
get_script_dir() {
|
||||||
[[ "$script_dir" ]] && return
|
[[ "$script_dir" ]] && return
|
||||||
|
|
||||||
|
@ -2839,6 +2829,14 @@ old_functions() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
old_flags() {
|
||||||
|
[[ -n "$osx_buildversion" ]] && err "Config: \$osx_buildversion is deprecated, use \$distro_shorthand instead."
|
||||||
|
[[ -n "$osx_codename" ]] && err "Config: \$osx_codename is deprecated, use \$distro_shorthand instead."
|
||||||
|
[[ -n "$progress_char" ]] && err "Config: \$progress_char is deprecated, use \$progress_char_elapsed and \$progress_char_total instead."
|
||||||
|
[[ "$cpu_cores" == "on" ]] && err "Config: \$cpu_cores='on' is deprecated, use \$cpu_cores='logical|physical|off' instead."
|
||||||
|
[[ -n "$image" ]] && { err "Config: \$image is deprecated, use \$image_source instead."; image_source="$image"; }
|
||||||
|
}
|
||||||
|
|
||||||
cache_uname() {
|
cache_uname() {
|
||||||
# Cache the output of uname so we don't
|
# Cache the output of uname so we don't
|
||||||
# have to spawn it multiple times.
|
# have to spawn it multiple times.
|
||||||
|
@ -3147,7 +3145,7 @@ main() {
|
||||||
cache_uname
|
cache_uname
|
||||||
get_os
|
get_os
|
||||||
get_default_config 2>/dev/null
|
get_default_config 2>/dev/null
|
||||||
check_old_flags
|
old_flags
|
||||||
get_args "$@"
|
get_args "$@"
|
||||||
get_distro
|
get_distro
|
||||||
bold
|
bold
|
||||||
|
|
Reference in New Issue