2023-11-10 21:12:15 +00:00
|
|
|
# ------------------------------------------------------
|
|
|
|
# Select installation profile
|
|
|
|
# ------------------------------------------------------
|
2023-11-17 12:48:02 +00:00
|
|
|
echo -e "${GREEN}"
|
2023-12-21 20:57:44 +00:00
|
|
|
figlet "Desktop Profile"
|
2023-11-17 12:48:02 +00:00
|
|
|
echo -e "${NONE}"
|
2023-11-21 20:19:51 +00:00
|
|
|
|
|
|
|
echo "SPACE = select/unselect a profile. RETURN = confirm. No selection = CANCEL"
|
|
|
|
profile=$(gum choose --no-limit --cursor-prefix "( ) " --selected-prefix "(x) " --unselected-prefix "( ) " "Hyprland" "Qtile")
|
|
|
|
if [ -z $profile ] ;then
|
|
|
|
echo "No profile selected. Installation canceled."
|
|
|
|
exit
|
2023-12-20 19:55:30 +00:00
|
|
|
fi
|