Hyprland-dotfiles/.install/profile.sh

17 lines
550 B
Bash
Raw Permalink 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")
2024-01-24 05:43:49 -05:00
2024-01-24 05:49:10 -05:00
if [ -z "${profile}" ] ;then
echo "No profile selected. Installation canceled."
exit
else
echo "Profile/s selected:" $profile
fi