Initial commit - transitioning from dotfiles

This commit is contained in:
2018-02-03 00:34:17 -06:00
commit 064184881a
19 changed files with 1227 additions and 0 deletions

6
bootstrap/replicate.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
tempfolder="/tmp/dots$(uuidgen)"
git clone --recursive --separate-git-dir="$HOME/.dotfiles" https://github.com/rehashedsalt/home.git $tempfolder
rsync -rvl --exclude ".git" $tempfolder/ $HOME/
rm -r $tempfolder
git submodule update --init --recursive --git-dir="$HOME/.dotfiles" --work-tree="$HOME" $HOME/