rcs-general/install.sh

35 lines
934 B
Bash
Raw Permalink Normal View History

2022-03-13 12:25:55 +01:00
#!/usr/bin/env bash
2022-03-12 11:38:34 +01:00
run_directory=$(dirname $(readlink -f "$0"))
user=$(whoami)
2022-03-17 15:08:12 +01:00
if [ -f $run_directory/.disabled ]; then
echo "Installation is disabled. Exiting..."
exit 0
fi
if [[ $user != 'root' ]]; then
echo "Copying rcs to home directory..."
cp $run_directory/bashrc /home/$user/.bashrc
cp $run_directory/vimrc /home/$user/.vimrc
cp $run_directory/tmux.conf /home/$user/.tmux.conf
if ! command -v sudo &> /dev/null; then
echo "Could not copy to root directory: sudo was not found."
else
echo "Copying rcs to root directory..."
sudo cp $run_directory/bashrc /root/.bashrc
sudo cp $run_directory/vimrc /root/.vimrc
sudo cp $run_directory/tmux.conf /root/.tmux.conf
fi
else
echo "Copying rcs to root directory..."
cp $run_directory/bashrc /root/.bashrc
cp $run_directory/vimrc /root/.vimrc
cp $run_directory/tmux.conf /root/.tmux.conf
fi
2022-03-12 11:38:34 +01:00
echo "Finished install. Exiting..."
exit 0