dotfiles/initialize_script
2018-07-24 07:00:11 +02:00

29 lines
795 B
Bash
Executable file

#!/bin/bash
# Setup script for vim & tmux
function get_path {
# Get the full path of a file
SCRIPT=`realpath $0`
# Remove everything but the filename
SCRIPTPATH=`dirname $SCRIPT`
}
read -p 'Install the script for a normal user or root account? [user/root]: ' USER
if [[ "$USER" == "user" ]]; then
get_path
mkdir $HOME/.vim
ln -sf $SCRIPTPATH/{.bashrc,vim/.vimrc,.tmux.conf,.profile} $HOME/;
ln -sf $SCRIPTPATH/vim/colors $HOME/.vim/
echo 'Linking configuration files done'
elif [[ "$USER" == "root" ]]; then
get_path
mkdir /root/.vim
ln -sf $SCRIPTPATH/{.bashrc,vim/.vimrc,.tmux.conf,.profile} /root/
ln -sf $SCRIPTPATH/vim/colors /root/.vim/
echo 'Linking configuration files done'
else
echo 'No selection was made'
exit 1
fi