From 953001537f4ec3843ae352656f43d4cb2a7f1fdd Mon Sep 17 00:00:00 2001 From: ACertainPersons <127463096+ACertainPersons@users.noreply.github.com> Date: Fri, 10 Nov 2023 20:12:10 -0600 Subject: [PATCH] Fixed Kubuntu recognized as Ubuntu --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index 48b96d21..3eb61f1b 100755 --- a/neofetch +++ b/neofetch @@ -1128,7 +1128,7 @@ get_distro() { if [[ $distro == "Ubuntu"* ]]; then case $XDG_CONFIG_DIRS in *"studio"*) distro=${distro/Ubuntu/Ubuntu Studio} ;; - *"plasma"*) distro=${distro/Ubuntu/Kubuntu} ;; + *"kde"*) distro=${distro/Ubuntu/Kubuntu} ;; *"mate"*) distro=${distro/Ubuntu/Ubuntu MATE} ;; *"xubuntu"*) distro=${distro/Ubuntu/Xubuntu} ;; *"Lubuntu"*) distro=${distro/Ubuntu/Lubuntu} ;;