General: Rename $version to $bash_version
This commit is contained in:
parent
2215fa95bb
commit
b759a7a88d
12
neofetch
12
neofetch
|
@ -8,7 +8,7 @@
|
||||||
# Created by Dylan Araps
|
# Created by Dylan Araps
|
||||||
# https://github.com/dylanaraps/
|
# https://github.com/dylanaraps/
|
||||||
|
|
||||||
version="${BASH_VERSION/.*}"
|
bash_version="${BASH_VERSION/.*}"
|
||||||
sys_locale="${LANG:-C}"
|
sys_locale="${LANG:-C}"
|
||||||
XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-${HOME}/.config}"
|
XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-${HOME}/.config}"
|
||||||
|
|
||||||
|
@ -661,7 +661,7 @@ get_wm_theme() {
|
||||||
esac
|
esac
|
||||||
|
|
||||||
wm_theme="${wm_theme//\'}"
|
wm_theme="${wm_theme//\'}"
|
||||||
(("$version" >= 4)) && wm_theme="${wm_theme^}"
|
(("$bash_version" >= 4)) && wm_theme="${wm_theme^}"
|
||||||
}
|
}
|
||||||
|
|
||||||
get_cpu() {
|
get_cpu() {
|
||||||
|
@ -1291,7 +1291,7 @@ get_style() {
|
||||||
|
|
||||||
theme="$(grep "^[^#]*$kde" "$kde_config_file")"
|
theme="$(grep "^[^#]*$kde" "$kde_config_file")"
|
||||||
theme="${theme/${kde}*=}"
|
theme="${theme/${kde}*=}"
|
||||||
(("$version" >= 4)) && theme="${theme^}"
|
(("$bash_version" >= 4)) && theme="${theme^}"
|
||||||
|
|
||||||
gtk_shorthand="on"
|
gtk_shorthand="on"
|
||||||
return
|
return
|
||||||
|
@ -1366,7 +1366,7 @@ get_style() {
|
||||||
gtk3theme=${gtk3theme//\'}
|
gtk3theme=${gtk3theme//\'}
|
||||||
|
|
||||||
# Uppercase the first letter of each gtk theme
|
# Uppercase the first letter of each gtk theme
|
||||||
if (("$version" >= 4)); then
|
if (("$bash_version" >= 4)); then
|
||||||
gtk2theme="${gtk2theme^}"
|
gtk2theme="${gtk2theme^}"
|
||||||
gtk3theme="${gtk3theme^}"
|
gtk3theme="${gtk3theme^}"
|
||||||
fi
|
fi
|
||||||
|
@ -1510,7 +1510,7 @@ get_term_font() {
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
(("$version" >= 4)) && term_font="${term_font^}"
|
(("$bash_version" >= 4)) && term_font="${term_font^}"
|
||||||
}
|
}
|
||||||
|
|
||||||
get_disk() {
|
get_disk() {
|
||||||
|
@ -1859,7 +1859,7 @@ get_ascii() {
|
||||||
err "Ascii: Ascii file not found, using distro ascii."
|
err "Ascii: Ascii file not found, using distro ascii."
|
||||||
|
|
||||||
# Lowercase the distro name
|
# Lowercase the distro name
|
||||||
if (("$version" <= 3)); then
|
if (("$bash_version" <= 3)); then
|
||||||
ascii="$(tr '[:upper:]' '[:lower:]' <<< "$ascii_distro")"
|
ascii="$(tr '[:upper:]' '[:lower:]' <<< "$ascii_distro")"
|
||||||
else
|
else
|
||||||
ascii="${ascii_distro,,}"
|
ascii="${ascii_distro,,}"
|
||||||
|
|
Reference in New Issue