Last active
August 22, 2020 15:37
-
-
Save cristianmiranda/79a325af7e0bf9d73bfd771b2a5b4c07 to your computer and use it in GitHub Desktop.
cmiranda's dotfiles bootstrap script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Just in case | |
sudo apt-get install -y git | |
# Grabs ssh & gpg keys | |
cd $HOME | |
BACKUP_DIR=/data/ssd/backups/manual/secrets | |
scp -r -P 62022 [email protected]:"${BACKUP_DIR}/.gnupg ${BACKUP_DIR}/.ssh ${BACKUP_DIR}/.cert" . | |
# Clones repo | |
WORKSPACE=$HOME/Documents/Work/Workspace | |
mkdir -p $WORKSPACE | |
cd $WORKSPACE | |
git clone --recursive [email protected]:cristianmiranda/dotfiles.git | |
# Kicks off the installation script | |
cd dotfiles | |
bash scripts/install.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
curl -L git.io/cm.files -o /tmp/cm.files && bash /tmp/cm.files