From e24f3337a1188cd42e86d287e09031fbfd7e8605 Mon Sep 17 00:00:00 2001 From: Bryan Joshua Pedini Date: Thu, 14 Dec 2023 14:24:21 +0100 Subject: [PATCH] fixed terminal_fancyfy not working for server excluded fancyfy from source in for loop added sourcing only the correct file --- bashrc_overrides/_all | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bashrc_overrides/_all b/bashrc_overrides/_all index f30e31f..fd8cc54 100644 --- a/bashrc_overrides/_all +++ b/bashrc_overrides/_all @@ -1,3 +1,4 @@ -for source in $(find "$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &> /dev/null && pwd)" -type f | grep -v "_all"); do +for source in $(find "$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &> /dev/null && pwd)" -type f | grep -Ev "_all|terminal_fancyfying"); do . "${source}" done +. "$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &> /dev/null && pwd)/terminal_fancyfying_${TERMINAL_FANCYFY}"