32 lines
906 B
Bash
Executable file
32 lines
906 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`
|
|
}
|
|
|
|
function user_config {
|
|
|
|
read -p 'Install the script for a normal user or root account? [user/root]: ' USER
|
|
|
|
if [[ "$USER" == "user" ]]; then
|
|
get_path
|
|
ln -s $SCRIPTPATH/{vim/.vimrc,tmux/.tmux.conf} /home/$SUDO_USER/;
|
|
ln -s $SCRIPTPATH/vim/colors /home/$SUDO_USER/.vim/
|
|
chown -R $SUDO_USER:$SUDO_USER /home/$SUDO_USER/.vim
|
|
echo 'Linking configuration files done'
|
|
elif [[ "$USER" == "root" ]]; then
|
|
get_path
|
|
ln -s $SCRIPTPATH/{vim/.vimrc,tmux/.tmux.conf} /root/
|
|
ln -s $SCRIPTPATH/vim/colors /root/.vim/
|
|
echo 'Linking configuration files done'
|
|
else
|
|
echo 'No selection was made'
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
user_config
|