14 lines
210 B
Bash
Executable File
14 lines
210 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Install my dotfiles.
|
|
#
|
|
|
|
which stow >/dev/null 2>&1
|
|
if [ $? -ne 0 ]; then
|
|
echo "stow is not installed" >&2
|
|
exit 1
|
|
fi
|
|
|
|
rm $HOME/.zshrc $HOME/.profile
|
|
ls -d */ | tr -d / | xargs stow -t $HOME -R
|