Use dash in unfilled gauge space instead of space
[khome.git] / home / lib / login_functions.sh
index 06444ac..92a111b 100644 (file)
@@ -380,8 +380,8 @@ bar_gauge() {
 
             printf "["
             for (i=1; i<=width; i++) {
-                c = i <= u ? "|" : " "
-                printf "%c", c
+                c = i <= u ? "|" : "-"
+                printf "%s", c
             }
             printf "]\n"
         }
This page took 0.026505 seconds and 4 git commands to generate.