10 lines
267 B
Bash
Executable File
10 lines
267 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
source set_script_env_vars
|
|
source ./src_files/.config/zsh/.zshenv
|
|
./make_config_dirs
|
|
./copy_configs
|
|
source $ZDOTDIR/.zshenv ; source $ZDOTDIR/.zshrc
|
|
./make_org_structure_dirs
|
|
./install_programs # TODO: moved this to after config copy, but does this work?
|