From 413a7d3681a7a8172be0e28a379d49b4fb483b55 Mon Sep 17 00:00:00 2001 From: Bailey Kasin <31324979+BKasin@users.noreply.github.com> Date: Mon, 6 May 2024 19:41:54 -0700 Subject: [PATCH] Add except for KDE neon to *buntu version check --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index e3bb7836..d90f0e03 100755 --- a/neofetch +++ b/neofetch @@ -1197,7 +1197,7 @@ get_distro() { elif type -p lsb_release >/dev/null; then # Debian does not include .x versions in /etc/os-version, but does in debian_version # So if that file exists, and we are not *buntu, build name from there - if [[ -f /etc/debian_version ]] && [[ $(lsb_release -si) != *"buntu"* ]]; then + if [[ -f /etc/debian_version ]] && [[ $(lsb_release -si) != *"buntu"* ]] && [[ $(lsb_release -si) != *"neon"* ]]; then . /etc/os-release case $distro_shorthand in on) distro="${NAME}" ;;