From 23139f9c1360dd9b5a9e9a7d2bef10b06393107f Mon Sep 17 00:00:00 2001 From: USER Date: Tue, 26 Sep 2023 07:37:25 +0100 Subject: [PATCH] . --- shared/bashrc | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/shared/bashrc b/shared/bashrc index 3273e24..37987af 100644 --- a/shared/bashrc +++ b/shared/bashrc @@ -209,6 +209,26 @@ _manpagecolor() { export LESS_TERMCAP_us=$'\E[01;32m' } +_bashrc() { + if [ -f /zz/zShared/shared/bashrc ] + then + source /zz/zShared/shared/bashrc + fi + + 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 +} _setpath _setldpath _setldrunpath