updated the mini script to install non-git or git hyprland version

This commit is contained in:
JaKooLit
2025-02-03 11:02:58 +09:00
parent 38ce478f5c
commit 1d812d7357
3 changed files with 37 additions and 36 deletions

View File

@@ -31,23 +31,21 @@ while true; do
case $choice in
1)
printf "\n${OK} You chose non-git version of Hyprland....... executing...\n"
printf "\n${OK} You chose ${BLUE}non-git version of Hyprland${RESET}....... executing...\n"
echo -e "${YELLOW} Uninstalling some hyprland packages first...${RESET}"
./scripts/uninstall.sh
echo -e "${NOTE} Installing non-git version of Hyprland...${RESET}"
./scripts/uninstall.sh &&
./scripts/install-hyprland.sh
break
;;
2)
printf "\n${OK} You chose git version of Hyprland....... executing...\n"
printf "\n${OK} You chose ${BLUE}git version of Hyprland${RESET}....... executing...\n"
echo -e "${YELLOW} Uninstalling some hyprland packages....${RESET}"
./scripts/uninstall.sh
echo -e "${NOTE} Installing git version of Hyprland...${RESET}"
./scripts/uninstall.sh &&
./scripts/install-hyprland-git.sh
break
;;
3)
echo -e "${MAGENTA} You chose to cancel. Good Bye!!...${RESET}"
echo -e "${MAGENTA} You have cancel it. Good Bye!!...${RESET}"
printf "\n%.0s" {1..2}
break
;;