From 2d1d689dd087d1193ebbb2acd05de39d19e67a25 Mon Sep 17 00:00:00 2001 From: Muhammad Herdiansyah Date: Sat, 10 Jun 2017 12:44:30 +0700 Subject: [PATCH] Distro [uname]: Remove macOS, add Haiku to use -p --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index 95b59cbe..17965dfd 100755 --- a/neofetch +++ b/neofetch @@ -218,7 +218,7 @@ get_distro() { # Get OS architecture. if [[ "$os_arch" == "on" ]]; then case "$os" in - "Solaris" | "AIX" | "BSD" | "macOS") machine_arch="$(uname -p)" ;; + "Solaris" | "AIX" | "BSD" | "Haiku") machine_arch="$(uname -p)" ;; *) machine_arch="$(uname -m)" ;; esac