9 lines
192 B
Text
9 lines
192 B
Text
|
# .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
|