From ab8821aa4ce44417d5ef53fd9879e48579208ed2 Mon Sep 17 00:00:00 2001 From: Bryan Joshua Pedini Date: Tue, 12 Dec 2023 14:50:24 +0100 Subject: [PATCH] fixed typo, updated variable fancyfy --- bashrc_overrides/_all | 2 +- .../{terminal_fancyfying => terminal_fancyfying_client} | 0 deploy.sh | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename bashrc_overrides/{terminal_fancyfying => terminal_fancyfying_client} (100%) diff --git a/bashrc_overrides/_all b/bashrc_overrides/_all index 33b3a8c..4c5de34 100644 --- a/bashrc_overrides/_all +++ b/bashrc_overrides/_all @@ -7,6 +7,6 @@ for source in colored_commands \ ls_aliases \ safety_aliases \ terminal_colors \ - ${TERMINAL_FANCIFY}; do + terminal_fancyfying_${TERMINAL_FANCYFY}; do . "$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )/$source" done diff --git a/bashrc_overrides/terminal_fancyfying b/bashrc_overrides/terminal_fancyfying_client similarity index 100% rename from bashrc_overrides/terminal_fancyfying rename to bashrc_overrides/terminal_fancyfying_client diff --git a/deploy.sh b/deploy.sh index ca9b179..2a9acfc 100755 --- a/deploy.sh +++ b/deploy.sh @@ -43,7 +43,7 @@ _delete() { _bashrc_ref() { echo "#REF:bashrc_overrides:REF" >> ~/.bashrc - echo "export TERMINAL_FANCIFY=terminal_fancyfying" >> ~/.bashrc + echo "export TERMINAL_FANCYFY=client" >> ~/.bashrc echo ". ${THIS}/bashrc_overrides/_all" >> ~/.bashrc }