This commit is contained in:
USER
2023-09-26 15:38:28 +01:00
parent 2f09a0277c
commit b197e31b20
2 changed files with 15 additions and 2 deletions

View File

@ -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