11 lines
179 B
Bash
Executable File
11 lines
179 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ! -d "${HOME}/.dotfiles" ]; then
|
|
echo "Cannot find dotfiles directory in user home."
|
|
exit 1
|
|
fi
|
|
|
|
pushd ${HOME}/.dotfiles >/dev/null
|
|
stow -v .
|
|
popd >/dev/null
|