From b197e31b209e89fd699dd25790d9d1e705fdd949 Mon Sep 17 00:00:00 2001 From: USER Date: Tue, 26 Sep 2023 15:38:28 +0100 Subject: [PATCH] . --- shared/bash_profile | 2 -- shared/bashrc | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/shared/bash_profile b/shared/bash_profile index bed1527..ca07a35 100644 --- a/shared/bash_profile +++ b/shared/bash_profile @@ -16,5 +16,3 @@ else fi fi fi - -alias dongle='bongle' \ No newline at end of file diff --git a/shared/bashrc b/shared/bashrc index 37987af..9a8d32b 100644 --- a/shared/bashrc +++ b/shared/bashrc @@ -229,6 +229,7 @@ _bashrc() { fi fi } + _setpath _setldpath _setldrunpath @@ -265,3 +266,17 @@ export GPODDER_DOWNLOAD_DIR=~/DocumentsPodcasts/downloads PATH=${PATH}:.local/bin ; export PATH export SIGNAL_PHONE_NUMBER= + +if [ -f /zz/zPrivate/secrets/bashrc ] +then + source /zz/zPrivate/secrets/bashrc +else + if [ -f /zz/Syno/secrets/bashrc ] + then + source /zz/Syno/secrets/bashrc + else + if [ -f ~/.bashrc ]; then + source ~/.bashrc + fi + fi +fi \ No newline at end of file