Making install scripts instead of stow

This commit is contained in:
2021-12-31 16:11:51 -05:00
parent 19d649da39
commit a720f97df9
7 changed files with 1082 additions and 3 deletions

View File

@@ -1,7 +1,10 @@
#!/bin/sh
set -e
# Open dotfiles.
cd "$DOTFILES" && vim .
set -e
test -d "${DOTFILES}" || \
(echo "Dotfiles path not a directory or doesn't exist" && exit 1)
cd "${DOTFILES}" && vi .