瀏覽代碼

OS: Fix weird spacing

Dylan Araps 8 年之前
父節點
當前提交
d1d63cf5df
共有 1 個文件被更改,包括 2 次插入2 次删除
  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
     # 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" ;;