From 35d120c25d510afd97aeb2af14e7240e90945c89 Mon Sep 17 00:00:00 2001 From: Dylan Date: Sun, 27 Mar 2016 21:17:02 +1100 Subject: [PATCH] Restrict progress bar colors to darker shades' --- neofetch | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/neofetch b/neofetch index f9c0f7d8..6873448b 100755 --- a/neofetch +++ b/neofetch @@ -2349,7 +2349,9 @@ setcolors () { if [ "$progress_color_total" == "distro" ]; then progress_color_total="$1" - [ "$1" == 7 ] && progress_color_total="${2}" + case "$1" in + 7 | 3 | 6) progress_color_total="${2}" ;; + esac fi }