diff --git a/neofetch b/neofetch index f159d4168..b12cece49 100755 --- a/neofetch +++ b/neofetch @@ -1316,7 +1316,11 @@ get_model() { ;; BSD|MINIX) - model=$(sysctl -n hw.vendor hw.product) + if [[ $(uname -s) = "FreeBSD" ]]; then + model=$(kenv smbios.system.version) + else + model=$(sysctl -n hw.vendor hw.product) + fi ;; Windows)