diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2022-07-28 17:12:40 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2022-07-28 17:12:40 +0200 |
commit | c9ebf2cfc68adee13fcd720c534119e431062ced (patch) | |
tree | 1141a7f661c84bcaa956d1f28ed17794e668604c /.bash_profile | |
parent | 15fa7050a887066cd8174f8267db5189b7597de4 (diff) | |
download | dotfiles-c9ebf2cfc68adee13fcd720c534119e431062ced.tar.gz |
Add config system for bash
Diffstat (limited to '.bash_profile')
-rw-r--r-- | .bash_profile | 5 |
1 files changed, 5 insertions, 0 deletions
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 |