summaryrefslogblamecommitdiffstats
path: root/godot.sh
blob: 39b8eb48177b2d4fcfdb1b7e30008144942678dd (plain) (tree)
1
2
3
4
5
6
7
8
9
10





                                            
                                       
                                                                      

                                                                                              
            
      




















                                                                              
               
 


                                        
                                                      
       




                                 
#!/bin/bash

# target dir of dotfiles (relative to $HOME)
TARGET=".dotfiles"

if [[ ! -e "${HOME}/${TARGET}" ]]; then
    if hash git > /dev/null 2>&1 ; then
	git clone git://git.animux.de/dotfiles.git "${HOME}/${TARGET}"
    else
	echo -e "\033[31m*\033[0m git is not available! This script will NOT work! Exiting..."
	exit
    fi
fi

pushd $HOME >/dev/null

# create new symlinks as specified in dotfiles mapping file:
grep -v "^#\|^$" "${TARGET}/symlink-mapping" | \
    grep "[^ \t]\+ -> [^ \t]\+" | \
    awk -F " -> " '{ print $1 ; print "'$TARGET'/"$2; }' | \
    while read target ; read source ; do 
    	if [[ -e "${target}" && ! -f "${target}" && ! -L "${target}" ]];  then
	    echo "!!! ~/${target}/ exists and is not a symlink."
	else
	    # remove folder (only if they are symlinks) and regular files
	    # (all other actions could be dangerouse: e.g. lost private keys)
	    [[ -L "${target}" || -f "${target}" ]] && rm -f "${target}"
	    
	    # create ne symlink
	    ln -s "${source}" "${target}"
	fi
    done

popd >/dev/null

pushd "${HOME}/${TARGET}" >/dev/null
       
# update hash of current symlink mapping
md5sum "symlink-mapping" > "./management/symlinks.md5"
       
popd >/dev/null

echo
echo "All done. Happy hacking ;)"
echo