2012-06-18 01:10:31 +02:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Pull in changes and make new symlinks
|
|
|
|
#
|
|
|
|
# adapted from @mathiasbynens & @michaeljsmalley
|
|
|
|
# https://github.com/mathiasbynens/dotfiles/blob/master/bootstrap.sh
|
|
|
|
# https://github.com/michaeljsmalley/dotfiles/blob/master/makesymlinks.sh
|
|
|
|
########################################################################
|
|
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# Variables
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
|
|
|
|
# dotfiles directory
|
2014-01-27 18:16:12 +01:00
|
|
|
dir=~/Projects/dotfiles
|
2012-06-18 01:10:31 +02:00
|
|
|
# list of files/folders to symlink in homedir
|
2013-10-27 13:08:40 +01:00
|
|
|
files="aliases bashrc bash_profile bash_prompt gitconfig gitignore_global hushlogin private tm_properties"
|
2012-06-18 01:10:31 +02:00
|
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# change to the dotfiles directory
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
echo "Changing to the $dir directory"
|
|
|
|
cd $dir
|
|
|
|
echo "...done"
|
|
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# pull in changes
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
echo "Getting changes"
|
|
|
|
git pull
|
|
|
|
echo "...done"
|
|
|
|
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
# create symlinks from the homedir to any files in the ~/dotfiles directory
|
|
|
|
# specified in $files
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
for file in $files; do
|
|
|
|
echo "Removing any existing dotfiles from ~"
|
|
|
|
rm ~/.$file
|
|
|
|
echo "...done"
|
|
|
|
echo "Creating symlink to $file in home directory."
|
|
|
|
ln -s $dir/$file ~/.$file
|
|
|
|
done
|
|
|
|
|
|
|
|
echo "...all done"
|