zlogin 159 B

123456
  1. # load all files from .shell/login.d directory
  2. if [ -d $HOME/.shellrc/login.d ]; then
  3. for file in $HOME/.shellrc/login.d/*.sh; do
  4. source $file
  5. done
  6. fi