From d1d63cf5dfe0f72b83e9ec68e21bad88652f7d67 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 5 Jan 2017 10:07:36 +1100 Subject: [PATCH] OS: Fix weird spacing --- neofetch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neofetch b/neofetch index ba50c2b0..cb2045ab 100755 --- a/neofetch +++ b/neofetch @@ -34,8 +34,8 @@ get_os() { # $kernel_name is set in a function called cache_uname and is # just the output of "uname -s". case "$kernel_name" in - "Linux" | "GNU"*) os="Linux" ;; - "Darwin") os="$(sw_vers -productName)" ;; + "Linux" | "GNU"*) os="Linux" ;; + "Darwin") os="$(sw_vers -productName)" ;; *"BSD" | "DragonFly" | "Bitrig") os="BSD" ;; "CYGWIN"*) os="Windows" ;; "SunOS") os="Solaris" ;;