Browse Source

OS: Fix weird spacing

Dylan Araps 8 years ago
parent
commit
d1d63cf5df
1 changed files with 2 additions and 2 deletions
  1. 2 2
      neofetch

+ 2 - 2
neofetch

@@ -34,8 +34,8 @@ get_os() {
     # $kernel_name is set in a function called cache_uname and is
     # $kernel_name is set in a function called cache_uname and is
     # just the output of "uname -s".
     # just the output of "uname -s".
     case "$kernel_name" in
     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" ;;
         *"BSD" | "DragonFly" | "Bitrig") os="BSD" ;;
         "CYGWIN"*) os="Windows" ;;
         "CYGWIN"*) os="Windows" ;;
         "SunOS") os="Solaris" ;;
         "SunOS") os="Solaris" ;;