8 lines
192 B
Bash
8 lines
192 B
Bash
# .zlogin
|
|
#
|
|
# load all files from .config/shell/login.d
|
|
if [ -d $XDG_CONFIG_HOME/shell/login.d ]; then
|
|
for file in $XDG_CONFIG_HOME/shell/login.d/*.sh; do
|
|
source $file
|
|
done
|
|
fi
|