Hyprland-dotfiles/.install/profile.sh

17 lines
526 B
Bash
Raw Normal View History

2023-11-10 16:12:15 -05:00
# ------------------------------------------------------
# Select installation profile
# ------------------------------------------------------
2023-11-17 07:48:02 -05:00
echo -e "${GREEN}"
2023-12-29 06:11:44 -05:00
figlet "Profile"
2023-11-17 07:48:02 -05:00
echo -e "${NONE}"
2024-05-27 07:39:44 -04:00
echo "Please select your installation profile."
echo
2023-11-21 15:19:51 -05:00
profile=$(gum choose --no-limit --cursor-prefix "( ) " --selected-prefix "(x) " --unselected-prefix "( ) " "Hyprland" "Qtile")
2024-01-24 05:43:49 -05:00
2024-01-24 05:49:10 -05:00
if [ -z "${profile}" ] ;then
2024-05-27 07:39:44 -04:00
echo ":: No profile selected. Installation canceled."
2024-01-24 05:49:10 -05:00
exit
else
2024-05-27 07:39:44 -04:00
echo ":: Profile/s selected:" $profile
2024-01-24 05:49:10 -05:00
fi