瀏覽代碼

single lines for giti

84582af
Dirk Alders 1 年之前
父節點
當前提交
c37533ea58
共有 1 個文件被更改,包括 14 次插入8 次删除
  1. 14
    8
      giti

+ 14
- 8
giti 查看文件

@@ -73,25 +73,31 @@ else
73 73
         git_status_text="unknown      "
74 74
       fi
75 75
     fi
76
-
77 76
     if [[ $NO_DETAILS ]]; then
78
-      echo -e "$git_status_color╠══$COLOR_GREEN($git_branch)$git_status_color - $git_status_text - $COLOR_CYAN$git_url$COLOR_WHITE\n\b"
77
+      # echo -e "$git_status_color╠══$COLOR_GREEN($git_branch)$git_status_color - $git_status_text - $COLOR_CYAN$git_url$COLOR_WHITE\n\b"
78
+      echo -e "$git_status_color├──$COLOR_GREEN($git_branch)$git_status_color - $git_status_text - $COLOR_CYAN$git_url$COLOR_WHITE\n\b"
79 79
     else
80
-      echo -e "$git_status_color╔═══╡ $git_status_text ╞════════════════════════════════════════════════════════════════"
81
-      echo -e "$git_status_color║ $COLOR_GREEN($git_branch)  $COLOR_CYAN$git_url"
80
+      # echo -e "$git_status_color╔═══╡ $git_status_text ╞════════════════════════════════════════════════════════════════"
81
+      echo -e "$git_status_color┌───┤ $git_status_text ├────────────────────────────────────────────────────────────────"
82
+      # echo -e "$git_status_color║ $COLOR_GREEN($git_branch)  $COLOR_CYAN$git_url"
83
+      echo -e "$git_status_color│ $COLOR_GREEN($git_branch)  $COLOR_CYAN$git_url"
82 84
 
83 85
       if [[ ! $git_diff == "" ]]; then
84
-        echo -e "$git_status_color╠════════════════════════════════════════════════════════════════════════════════════"
86
+        # echo -e "$git_status_color╠════════════════════════════════════════════════════════════════════════════════════"
87
+        echo -e "$git_status_color├────────────────────────────────────────────────────────────────────────────────────"
85 88
         IFS=$'\n'
86 89
         for ENTRY in $git_diff; do 
87 90
           if [[ $ENTRY = "D "* ]] || [[ $ENTRY = "A "* ]] || [[ $ENTRY = "M "* ]] || [[ $ENTRY = "R "* ]]; then
88
-            echo -e "$git_status_color║ $COLOR_DARKYELLOW$ENTRY"
91
+            # echo -e "$git_status_color║ $COLOR_DARKYELLOW$ENTRY"
92
+            echo -e "$git_status_color│ $COLOR_DARKYELLOW$ENTRY"
89 93
           else
90
-            echo -e "$git_status_color║ $COLOR_YELLOW$ENTRY"
94
+            # echo -e "$git_status_color║ $COLOR_YELLOW$ENTRY"
95
+            echo -e "$git_status_color│ $COLOR_YELLOW$ENTRY"
91 96
           fi
92 97
         done
93 98
       fi
94
-      echo -e "$git_status_color╚════════════════════════════════════════════════════════════════════════════════════$COLOR_WHITE\n \b"
99
+      # echo -e "$git_status_color╚════════════════════════════════════════════════════════════════════════════════════$COLOR_WHITE\n \b"
100
+      echo -e "$git_status_color└────────────────────────────────────────────────────────────────────────────────────$COLOR_WHITE\n \b"
95 101
     fi
96 102
   fi
97 103
 fi

Loading…
取消
儲存