menu-cf.sh 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #!/bin/bash
  2. DF='\e[39m'
  3. Bold='\e[1m'
  4. Blink='\e[5m'
  5. yell='\e[33m'
  6. red='\e[31m'
  7. green='\e[32m'
  8. blue='\e[34m'
  9. PURPLE='\e[35m'
  10. CYAN='\e[36m'
  11. Lred='\e[91m'
  12. Lgreen='\e[92m'
  13. Lyellow='\e[93m'
  14. NC='\e[0m'
  15. MYIP=$(wget -qO- ifconfig.co);
  16. echo "Checking VPS"
  17. #EDIT IZIN
  18. clear
  19. echo -e "$PURPLE .-------------------------------------------------------."
  20. echo -e "$PURPLE | $Blink $yell Domain Menu$NC $PURPLE|"
  21. echo -e "$PURPLE '-------------------------------------------------------'$NC"
  22. echo -e " $green 1)$NC $yell Add domain Host For VPS$NC"
  23. echo -e " $green 2)$NC $yell Add ID Cloudflare$NC"
  24. echo -e " $green 3)$NC $yell Cloudflare Add-Ons$NC"
  25. echo -e " $green 4)$NC $yell Pointing BUG$NC"
  26. echo -e " $green 5)$NC $yell Renew Certificate V2RAY$NC"
  27. echo -e " $green 6)$NC $yell BACK TO MENU$NC"
  28. echo -e "$PURPLE .-------------------------------------------------------."
  29. echo -e "$PURPLE | $yell Script status : Premium$NC $PURPLE|"
  30. echo -e "$PURPLE '-------------------------------------------------------'$NC"
  31. echo -e ""
  32. read -p " Please Input Number [1-6 or x] : " opt
  33. echo -e ""
  34. case $opt in
  35. 1) clear ; add-host ;;
  36. 2) clear ; add-cff ;;
  37. 3) clear ; add-dom ;;
  38. 4) clear ; add-cfh ;;
  39. 5) clear ; certv2ray ;;
  40. 6) clear ; menu ;;
  41. *) echo "Please enter an correct number" ;;
  42. esac