24 lines
569 B
Bash
Executable file
24 lines
569 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SCRIPT=$(readlink -f "$0")
|
|
SCRIPTPATH=$(dirname "$SCRIPT")
|
|
HOST=`hostname`
|
|
|
|
# List of the config files to install
|
|
FILES="vimrc zshrc gitconfig vim gitignore_global git_user"
|
|
|
|
if [[ ! -e $HOME/.git_user ]]
|
|
then
|
|
cp $SCRIPTPATH/git_user.def $SCRIPTPATH/git_user
|
|
sed -i -e "s/{username}/$USER/" $SCRIPTPATH/git_user
|
|
sed -i -e "s/{email}/$USER@$HOST/" $SCRIPTPATH/git_user
|
|
fi
|
|
|
|
# Create symbolic links in the user's home dir
|
|
for file in $FILES
|
|
do
|
|
if [ ! -e $HOME/.${file} ]
|
|
then
|
|
ln -s ${SCRIPTPATH}/${file} $HOME/.${file}
|
|
fi
|
|
done
|