commit e8348b10eec751453c1504c43196618a1ab32531 parent afa221580339619ec347bab5ad12aa4482987026 Author: Alex Balgavy <a.balgavy@gmail.com> Date: Tue, 5 Nov 2019 01:21:40 -0500 Modified install script Former-commit-id: 7e44028d878ce990ecef76404e85f253e94b71f7 Diffstat:
M | install.sh | | | 7 | +++---- |
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/install.sh b/install.sh @@ -39,14 +39,13 @@ read -n 1 -p "Install all dotfiles? [Y/n]" yn echo case $yn in [Yy]* ) - sed -i -e "s:MY_HOME_DIR:$HOME:" vim/vimrc git/gitconfig - scripts/conf use $(find . -maxdepth 1 -type d ! -iwholename "*.git*") + yes | scripts/conf link echo "Dotfiles installed." - echo "Run \`conf\` for more help." + echo "Run \`conf -h\` for more help." ;; * ) echo "No dotfiles installed automatically." - echo "Run \`scripts/conf\` for more help." + echo "Run \`scripts/conf -h\` for more help." ;; esac