1
0
Fork 0
mirror of https://github.com/kastdeur/dotfiles.git synced 2025-05-14 20:09:26 +02:00

Renamed envs and bash/scriptlets to *.d

This commit is contained in:
Eric-Teunis de Boone 2016-10-05 02:05:06 +02:00
parent 4aee70fd06
commit 3bbb4d6c9a
18 changed files with 2 additions and 77 deletions

View file

@ -24,10 +24,10 @@ if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
fi
# Load main things
if [ -d "$DOTBASH/scriptlets" ]; then
if [ -d "$DOTBASH/bash.d" ]; then
for f in colours aliases history ps1
do
source "$DOTBASH/scriptlets/$f"
source "$DOTBASH/bash.d/$f"
done
fi