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
|
2017-03-24 15:51:13 +00:00
|
|
|
files=$(ls -1 --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
|
|
|
|
for file in $files; do
|
2017-03-24 15:51:13 +00:00
|
|
|
stow -v $file
|
2012-12-01 04:11:06 +00:00
|
|
|
done
|