From 63df9687db98e2fbc86e184e7edac43668fd8895 Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Sun, 19 Nov 2017 16:49:49 +0100 Subject: [PATCH] distro: fix trueos detection --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index 9c8ad885..38be3f15 100755 --- a/neofetch +++ b/neofetch @@ -153,7 +153,7 @@ get_distro() { # Workarounds for FreeBSD based distros. [[ -f "/etc/pcbsd-lang" ]] && distro="PCBSD" - [[ -f "/etc/rc.conf.trueos" ]] && distro="TrueOS" + [[ -f "/etc/trueos-lang" ]] && distro="TrueOS" # /etc/pacbsd-release is an empty file [[ -f "/etc/pacbsd-release" ]] && distro="PacBSD"