50 lines
1.2 KiB
Bash
Executable File
50 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Dotfiles and bootstrap installer
|
|
# Installs git, clones repository and symlinks dotfiles to your home directory
|
|
|
|
if ! command -v git >/dev/null 2>&1; then
|
|
if [ `uname` == 'Darwin' ]; then
|
|
# Install Homebrew
|
|
ruby -e "$(curl -fsSkL raw.github.com/mxcl/homebrew/go)"
|
|
# Install Git
|
|
brew install git
|
|
else
|
|
echo "Error: Git is required."
|
|
exit
|
|
fi
|
|
fi
|
|
|
|
# Clone dotfiles and make symlinks
|
|
echo "Installing dotfiles..."
|
|
cd ~ && git clone git@github.com:sapegin/dotfiles.git && cd dotfiles && ./sync.py
|
|
source ~/.bashrc
|
|
echo "Dotfiles installed successfully."
|
|
|
|
if [ `uname` == 'Darwin' ]; then
|
|
# Copy path to clipboard
|
|
echo -n "~/dotfiles/setup/bootstrap.sh" | pbcopy
|
|
echo
|
|
echo "Path to bootstrap script copied to clipboard."
|
|
fi
|
|
|
|
|
|
# Nyan cat
|
|
# https://github.com/steckel/Git-Nyan-Graph/blob/master/nyan.sh
|
|
e='\033'
|
|
RESET="$e[0m"
|
|
BOLD="$e[1m"
|
|
CYAN="$e[0;96m"
|
|
RED="$e[0;91m"
|
|
YELLOW="$e[0;93m"
|
|
GREEN="$e[0;92m"
|
|
echo
|
|
echo -en $RED'-_-_-_-_-_-_-_'
|
|
echo -e $RESET$BOLD',------,'$RESET
|
|
echo -en $YELLOW'_-_-_-_-_-_-_-'
|
|
echo -e $RESET$BOLD'| /\_/\\'$RESET
|
|
echo -en $GREEN'-_-_-_-_-_-_-'
|
|
echo -e $RESET$BOLD'~|__( ^ .^)'$RESET
|
|
echo -en $CYAN'-_-_-_-_-_-_-'
|
|
echo -e $RESET$BOLD'"" ""'$RESET
|