1
0
mirror of https://github.com/balkian/dotfiles.git synced 2024-09-16 08:41:42 +00:00
dotfiles/make.sh

34 lines
1.0 KiB
Bash
Raw Normal View History

2012-12-01 04:11:06 +00:00
#!/bin/bash
############################
# .make.sh
# This script creates symlinks from the home directory to any desired dotfiles in ~/dotfiles
############################
########## Variables
2015-04-07 23:39:23 +00:00
# change to the dotfiles directory
2015-04-08 23:30:27 +00:00
cd `dirname $0`
2015-04-07 23:39:23 +00:00
2015-04-07 23:24:17 +00:00
########## Don't forget the submodules
git submodule init
git submodule update --recursive
2012-12-01 04:11:06 +00:00
olddir=~/dotfiles$(date +%Y-%m-%d_%H:%M:%S) # old dotfiles backup directory
2015-04-08 23:30:27 +00:00
files=$(ls --ignore="not_dots" --ignore="README.md" --ignore="make.sh" --ignore="Docker" $PWD) # list of files/folders to symlink in homedir
2012-12-01 04:11:06 +00:00
##########
# create dotfiles_old in homedir
2015-04-08 23:30:27 +00:00
echo "** Creating $olddir for backup: of any existing dotfiles in ~"
2012-12-01 04:11:06 +00:00
mkdir -p $olddir
echo "...done"
# move any existing dotfiles in homedir to dotfiles_old directory, then create symlinks
2015-04-08 23:30:27 +00:00
echo "** Creating symlinks. Any existing dotfiles will be moved to: $olddir"
2012-12-01 04:11:06 +00:00
for file in $files; do
2015-04-08 23:30:27 +00:00
mv ~/.$file $olddir && echo "Backed up: ~/.$file"
ln -s $PWD/$file ~/.$file
2012-12-01 04:11:06 +00:00
done
2015-04-08 23:30:27 +00:00
rmdir $olddir 2>/dev/null && echo "Backup dir empty. Removed"