Initial checkin

This commit is contained in:
2015-08-21 02:14:05 -07:00
commit d7ebb8e0d2
15 changed files with 395 additions and 0 deletions

20
deploy.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
echo "Deploying dotfiles..."
pushd $HOME &> /dev/null
FILES=($(ls -p .dotfiles | grep -v / | grep -v deploy))
for file in ${FILES[@]}; do
mv .$file .${file}.bak
ln -s .dotfiles/$file .$file
done
mkdir -p .config
mv .config/fish .config/fish.bak
ln -s .dotfiles/fish .config/fish
popd &> /dev/null
echo "...done."