hyprland-dotfiles/.install/bashrc.sh

39 lines
1.3 KiB
Bash
Raw Permalink Normal View History

2023-11-10 21:12:15 +00:00
# ------------------------------------------------------
# Install .bashrc
# ------------------------------------------------------
2023-12-22 08:17:34 +00:00
2023-11-17 12:48:02 +00:00
echo -e "${GREEN}"
2023-12-21 20:57:44 +00:00
figlet ".bashrc"
2023-11-17 12:48:02 +00:00
echo -e "${NONE}"
2023-11-21 20:19:51 +00:00
if [ ! -L ~/.bashrc ] && [ -f ~/.bashrc ]; then
2023-12-22 08:17:34 +00:00
echo "PLEASE NOTE: The script has detected an existing .bashrc file."
2023-11-21 20:19:51 +00:00
fi
if [ -f ~/dotfiles-versions/backups/$datets/.bashrc-old ]; then
echo "Backup is already available here ~/dotfiles-versions/backups/$datets/.bashrc-old"
fi
if [ ! -L ~/.bashrc ] && [ -f ~/.bashrc ]; then
bash_confirm="Do you want to replace your existing .bashrc file with the dotfiles .bashrc file?"
2023-12-22 08:17:34 +00:00
if gum confirm "$bash_confirm" ;then
rm ~/.bashrc
_installSymLink .bashrc ~/.bashrc ~/dotfiles/.bashrc ~/.bashrc
elif [ $? -eq 130 ]; then
exit 130
else
echo "Installation of the .bashrc file skipped."
fi
2023-11-21 20:19:51 +00:00
else
bash_confirm="Do you want to install the dotfiles .bashrc file now?"
2023-12-22 08:17:34 +00:00
if gum confirm "$bash_confirm" ;then
if [ -L ~/.bashrc ] || [ -f ~/.bashrc ]; then
rm ~/.bashrc
echo "Existing .bashrc removed."
fi
_installSymLink .bashrc ~/.bashrc ~/dotfiles/.bashrc ~/.bashrc
elif [ $? -eq 130 ]; then
exit 130
else
echo "Installation of the .bashrc file skipped."
fi
2023-11-21 20:19:51 +00:00
fi
2023-11-10 21:12:15 +00:00
echo ""