dotfiles/bin/update-dotfiles.sh

48 lines
1.5 KiB
Bash
Raw Normal View History

2015-07-26 20:27:32 +02:00
#!/usr/bin/env bash
2012-06-18 01:10:31 +02:00
#
# Pull in changes and make new symlinks
#
2012-06-18 01:10:31 +02:00
# 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
2017-06-12 01:21:12 +02:00
cd ../ || exit
2014-11-03 17:40:13 +01:00
2012-06-18 01:10:31 +02:00
# list of files/folders to symlink in homedir
2017-05-07 01:20:00 +02:00
files="aliases bashrc bash_profile bash_paths bash_prompt editorconfig exports gemrc gitconfig gitignore hushlogin inputrc private npmrc bin tmux.conf"
2014-11-03 17:40:13 +01:00
# ----------------------------------------------------------------------
# delete existing dotfiles in ~
# ----------------------------------------------------------------------
for file in $files; do
2017-06-12 01:04:18 +02:00
rm ~/."$file"
2014-11-03 17:40:13 +01:00
done
2012-06-18 01:10:31 +02:00
2016-11-03 22:22:31 +01:00
2012-06-18 01:10:31 +02:00
# ----------------------------------------------------------------------
# create symlinks from the homedir to any files in the ~/dotfiles directory
2012-06-18 01:10:31 +02:00
# specified in $files
# ----------------------------------------------------------------------
2014-11-03 17:40:13 +01:00
2012-06-18 01:10:31 +02:00
for file in $files; do
2017-06-12 01:04:18 +02:00
ln -s "$file" ~/."$file"
2014-11-03 17:40:13 +01:00
echo "$(tput setaf 64)$(tput sgr0) Created symlink to $(tput setaf 37)$file$(tput sgr0)"
2012-06-18 01:10:31 +02:00
done
2016-11-03 22:22:31 +01:00
2014-11-03 17:40:13 +01:00
# ----------------------------------------------------------------------
# source what we just created
# ----------------------------------------------------------------------
source ~/.bash_profile
2017-05-07 01:20:00 +02:00
exit