11 lines
333 B
Plaintext
11 lines
333 B
Plaintext
|
#!/bin/zsh
|
||
|
_DEPENDENCIES+=()
|
||
|
_REQUIRED_ENV+=()
|
||
|
source ${0:a:h}/common.zsh
|
||
|
#####################################################################
|
||
|
|
||
|
__STATUS 'updating all config files and links'
|
||
|
__RUN_SCWRYPT zsh/config/symlinks || exit 1
|
||
|
__RUN_SCWRYPT zsh/config/terminfo || exit 2
|
||
|
__SUCCESS 'finished updating config files and links'
|