hypr-dotfiles/.install/hook.sh

16 lines
489 B
Bash
Raw Normal View History

2024-03-01 12:33:39 +00:00
# ------------------------------------------------------
# Copy dotfiles
# ------------------------------------------------------
if [ -f ~/dotfiles-versions/hook.sh ]; then
echo -e "${GREEN}"
figlet "Hook"
echo -e "${NONE}"
echo ":: The script has detected a hook.sh script."
if gum confirm "Do you want to run the script now?"; then
source ~/dotfiles-versions/hook.sh
echo ":: hook.sh executed!"
else
echo ":: Execution of hook.sh skipped."
fi
fi