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