Install script
This commit is contained in:
parent
9f31eb8183
commit
1db9e9af20
1 changed files with 12 additions and 0 deletions
12
install.sh
Executable file
12
install.sh
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env zsh
|
||||
|
||||
|
||||
for SCRIPT in update_*; do
|
||||
./${SCRIPT}
|
||||
done
|
||||
|
||||
for CONFIG in .zshrc*; do
|
||||
! [ -f ${HOME}/${CONFIG} ] && ln -s $PWD/${CONFIG} ${HOME}/${CONFIG}
|
||||
done
|
||||
|
||||
# vim:set et ts=4 sts=0 sw=0 ft=zsh:
|
Loading…
Reference in a new issue