diff --git a/bash/rc b/bash/rc index f8a022b..43f0b49 100644 --- a/bash/rc +++ b/bash/rc @@ -31,7 +31,7 @@ fi # Load main things if [ -d "$DOTBASH/bash.d" ]; then - for f in colours aliases history 00-marietje prompt_command password-store + for f in colours aliases history prompt_command password-store do if [ -r "$DOTBASH/bash.d/$f" ]; then source "$DOTBASH/bash.d/$f" diff --git a/profile.sh b/profile.sh index e946faf..254c423 100644 --- a/profile.sh +++ b/profile.sh @@ -9,3 +9,6 @@ export XDG_DOTFILES_DIR="$HOME/.dotfiles" # Always source a local profile [ -r "$HOME/.profile.local" ] && source "$HOME/.profile.local" + +# Also check in .local for a profile +[ -r "$HOME/.local/profile" ] && source "$HOME/.local/profile"