From c91040286b83956df93360e1b36a209abab526a4 Mon Sep 17 00:00:00 2001 From: Michael Campagnaro Date: Tue, 25 Aug 2020 20:50:04 -0400 Subject: [PATCH] Add dim color to printing helper --- script_helpers/printing.sh | 1 + vim/templates/skeleton.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/script_helpers/printing.sh b/script_helpers/printing.sh index 86167cb..a7fd977 100644 --- a/script_helpers/printing.sh +++ b/script_helpers/printing.sh @@ -11,6 +11,7 @@ if [ -t 1 ] && [ -n "$ncolors" ] && [ "$ncolors" -ge 8 ]; then MAGENTA="$(tput setaf 5)" CYAN="$(tput setaf 6)" BOLD="$(tput bold)" + DIM="\e[2m" NORMAL="$(tput sgr0)" else RED="" diff --git a/vim/templates/skeleton.sh b/vim/templates/skeleton.sh index 4c71957..3798536 100644 --- a/vim/templates/skeleton.sh +++ b/vim/templates/skeleton.sh @@ -11,6 +11,7 @@ if [ -t 1 ] && [ -n "$ncolors" ] && [ "$ncolors" -ge 8 ]; then MAGENTA="$(tput setaf 5)" CYAN="$(tput setaf 6)" BOLD="$(tput bold)" + DIM="\e[2m" NORMAL="$(tput sgr0)" else RED=""