From fd349baa9993f9efccda5c4ee72fa3ffbeb3f589 Mon Sep 17 00:00:00 2001 From: Bryan Joshua Pedini Date: Tue, 12 Dec 2023 14:45:02 +0100 Subject: [PATCH] variabilized terminal fancifying (client/server) --- bashrc_overrides/_all | 2 +- deploy.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/bashrc_overrides/_all b/bashrc_overrides/_all index e167731..33b3a8c 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_fancyfying; do + ${TERMINAL_FANCIFY}; do . "$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )/$source" done diff --git a/deploy.sh b/deploy.sh index 41c6327..ca9b179 100755 --- a/deploy.sh +++ b/deploy.sh @@ -43,6 +43,7 @@ _delete() { _bashrc_ref() { echo "#REF:bashrc_overrides:REF" >> ~/.bashrc + echo "export TERMINAL_FANCIFY=terminal_fancyfying" >> ~/.bashrc echo ". ${THIS}/bashrc_overrides/_all" >> ~/.bashrc }