Hyprland-dotfiles/.install/profile.sh

16 lines
545 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}"
2023-11-21 15:19:51 -05: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-29 06:11:44 -05:00
else
echo "Profile/s selected: $profile"
2023-12-20 14:55:30 -05:00
fi