11 lines
194 B
Bash
11 lines
194 B
Bash
#
|
|
# ~/.bash_profile
|
|
#
|
|
|
|
if [ -d $XDG_CONFIG_HOME/shell/login.d ]; then
|
|
for file in $XDG_CONFIG_HOME/shell/login.d/*.sh; do
|
|
source $file
|
|
done
|
|
fi
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|