From 1d9fac6f1ff20347cc7662fff0ad3d26f78cc324 Mon Sep 17 00:00:00 2001 From: "Azalea (on HyDEV-Daisy)" Date: Thu, 11 Aug 2022 22:14:21 -0400 Subject: [PATCH] [F] Missing brackets --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index bc0f56fd..31cfba46 100755 --- a/neofetch +++ b/neofetch @@ -2758,7 +2758,7 @@ get_cpu() { *) # If socket information is present and more than 1, display cpu count first if [[ $sockets ]] && [[ $sockets -gt 1 ]]; then - cpu="${sockets}x $cpu $((cores / sockets))" + cpu="${sockets}x $cpu ($((cores / sockets)))" else cpu="$cpu ($cores)" fi