From aa1fa3222c657ca4f6497b452a4b42bec89388e1 Mon Sep 17 00:00:00 2001 From: DeepMechatronics <65353181+DeepMechatronics@users.noreply.github.com> Date: Fri, 3 Sep 2021 07:49:22 +0530 Subject: [PATCH] Change output dir color form Red to Green for bash --- bin/autojump.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/autojump.bash b/bin/autojump.bash index 379e529..674e3d7 100644 --- a/bin/autojump.bash +++ b/bin/autojump.bash @@ -62,7 +62,7 @@ j() { output="$(autojump ${@})" if [[ -d "${output}" ]]; then if [ -t 1 ]; then # if stdout is a terminal, use colors - echo -e "\\033[31m${output}\\033[0m" + echo -e "\\033[32m${output}\\033[0m" else echo -e "${output}" fi