diff --git a/neofetch b/neofetch index 14c19650..16f5a4a1 100755 --- a/neofetch +++ b/neofetch @@ -513,12 +513,8 @@ ascii_distro="$distro" getdistro () { # Get architecture - if [ "$os_arch" == "on" ]; then - case "$(getconf LONG_BIT)" in - 64) distro+=" 64-bit" ;; - 32) distro+=" 32-bit" ;; - esac - fi + [ "$os_arch" == "on" ] && \ + distro+=" $(uname -m)" }