Hyprland-dotfiles/.install/installer.sh

32 lines
1.2 KiB
Bash
Raw Normal View History

2023-12-25 08:45:11 -05:00
# ------------------------------------------------------
# Install required packages
# ------------------------------------------------------
echo -e "${GREEN}"
figlet "Packages"
echo -e "${NONE}"
if [ -d ~/dotfiles ] ;then
echo "Do you want to check for new packages only (faster installation)"
2023-12-25 09:02:36 -05:00
echo "or do you want to reinstall all packages again? (more robust and can help to fix issues)"
2024-05-27 07:39:44 -04:00
echo
2023-12-25 09:02:36 -05:00
if gum confirm "How do you want to proceed?" --affirmative "New packages only" --negative "Force reinstallation" ;then
2023-12-25 08:45:11 -05:00
force_install=0
elif [ $? -eq 130 ]; then
2024-05-27 07:39:44 -04:00
echo ":: Installation canceled."
2023-12-25 08:45:11 -05:00
exit 130
else
force_install=1
fi
else
2023-12-25 09:02:36 -05:00
echo "Do you want to reinstall all already installed packages and install the required new packages? (recommended and more robust)"
2023-12-25 08:45:11 -05:00
echo "or do you want to install the new required packages only? (could be faster installation)"
2024-05-27 07:39:44 -04:00
echo
2023-12-25 09:02:36 -05:00
if gum confirm "How do you want to proceed?" --affirmative "Reinstall all packages" --negative "Install new packages only" ;then
2023-12-25 08:45:11 -05:00
force_install=1
elif [ $? -eq 130 ]; then
2024-05-27 07:39:44 -04:00
echo ":: Installation canceled."
2023-12-25 08:45:11 -05:00
exit 130
else
force_install=0
fi
fi