dotfiles/bootstrap.sh

44 lines
1.4 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
cd $BASH_SOURCE && source dotfiles/lib/shellrc/aliases.sh && source dotfiles/lib/bash/aliases.sh
DOTFILES_DIRECTORY="(sourcefile_abspath)/dotfiles"
echo $DOTFILES_DIRECTORY
2013-09-25 17:38:16 -06:00
function symlink_dotfiles() {
2014-04-08 06:50:21 -06:00
cd $DOTFILES_DIRECTORY
2014-04-09 12:45:52 -06:00
[ -a ~/.dotfiles-backups ] && mv ~/.dotfiles-backups ~/.dotfiles-backups.old
2014-04-08 06:50:21 -06:00
mkdir ~/.dotfiles-backups
for filename in *; do
local link_destination="$HOME/.$filename"
2014-04-09 12:45:52 -06:00
local link_target=$(${readlink_command} -f $filename)
echo "linking $link_destination to $link_target"
# Using only test -e doesn't work here because it will return
# false if the destination of the symbolic link at
# link_destination does not exist.
test -e $link_destination || test -L $link_destination && mv $link_destination ~/.dotfiles-backups
ln -si $link_target $link_destination
2013-09-25 17:38:16 -06:00
done
2014-04-09 12:45:52 -06:00
[ -a ~/.dotfiles-backups.old ] && mv ~/.dotfiles-backups.old ~/.dotfiles-backups/.dotfiles-backups
2011-09-05 12:19:31 -06:00
}
function parse_options() {
while getopts "f" OPTCHAR; do
case $optchar in
f)
symlink_dotfiles
return
;;
esac
done
shift $((OPTIND-1))
2014-04-08 06:50:21 -06:00
read -p "Symlinking files from $DOTFILES_DIRECTORY. This may overwrite existing files in your home directory. Do you wish to proceed? (y/n) " -n 1
echo
if [[ $REPLY =~ ^[Yy]$ ]]; then
symlink_dotfiles
fi
}
2014-04-08 06:50:21 -06:00
parse_options()