From c9ebf2cfc68adee13fcd720c534119e431062ced Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Thu, 28 Jul 2022 17:12:40 +0200 Subject: Add config system for bash --- .bash_profile | 5 +++++ 1 file changed, 5 insertions(+) (limited to '.bash_profile') diff --git a/.bash_profile b/.bash_profile index 8dc994e..b0e2ed8 100644 --- a/.bash_profile +++ b/.bash_profile @@ -9,6 +9,11 @@ else DOTFILEBASE="/home/jonas/dotfiles" fi +source "$DOTFILEBASE/config.default" +if [ -f "$HOME/.files.config" ]; then + source "$HOME/.files.config" +fi + for f in $DOTFILEBASE/bash/*.profile ; do source $f done -- cgit v1.2.3