Hyprland-dotfiles/.install/preparation.sh

41 lines
1.7 KiB
Bash
Raw Normal View History

2023-11-10 16:12:15 -05:00
# ------------------------------------------------------
# Prepare dotfiles
# ------------------------------------------------------
2023-11-17 07:48:02 -05:00
echo -e "${GREEN}"
2023-11-10 16:12:15 -05:00
cat <<"EOF"
____ _ _
| _ \ _ __ ___ _ __ __ _ _ __ __ _| |_(_) ___ _ __
| |_) | '__/ _ \ '_ \ / _` | '__/ _` | __| |/ _ \| '_ \
| __/| | | __/ |_) | (_| | | | (_| | |_| | (_) | | | |
|_| |_| \___| .__/ \__,_|_| \__,_|\__|_|\___/|_| |_|
|_|
EOF
2023-11-17 07:48:02 -05:00
echo -e "${NONE}"
2023-11-10 16:12:15 -05:00
echo "Preparing temporary folders for the installation."
if [ ! -d ~/dotfiles-versions ]; then
mkdir ~/dotfiles-versions
echo "~/dotfiles-versions folder created."
fi
if [ ! -d ~/dotfiles-versions/$version ]; then
mkdir ~/dotfiles-versions/$version
echo "~/dotfiles-versions/$version folder created."
else
2023-11-17 07:48:02 -05:00
echo "The folder ~/dotfiles-versions/$version already exists from previous installations."
2023-11-25 10:53:12 -05:00
rm -rf ~/dotfiles-versions/$version
2023-11-17 07:48:02 -05:00
mkdir ~/dotfiles-versions/$version
echo "Clean build prepared for the installation."
2023-11-10 16:12:15 -05:00
fi
rsync -a -I --exclude-from=.install/excludes.txt . ~/dotfiles-versions/$version/
2023-11-25 10:53:12 -05:00
if [[ $(_isFolderEmpty ~/dotfiles-versions/$version/) == 0 ]] ;then
echo "AN ERROR HAS OCCURED. Preparation of ~/dotfiles-versions/$version/ failed"
echo "Please check that rsync is installad on your system."
echo "Execution of rsync -a -I --exclude-from=.install/excludes.txt . ~/dotfiles-versions/$version/ is required."
exit
fi
2023-12-07 15:32:32 -05:00
if [ ! -f ~/dotfiles-versions/hook.sh ]; then
# cp .install/templates/hook.sh ~/dotfiles-versions/
fi
2023-11-10 16:12:15 -05:00
echo "dotfiles $version successfully prepared in ~/dotfiles-versions/$version/"
echo ""