forked from CatValentine-Dev/pterodactylthemes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.sh
49 lines (41 loc) · 1.05 KB
/
menu.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
if (( $EUID != 0 )); then
echo -e "${CYAN}Run script as root"
exit
fi
clear
portuguese(){
bash <(curl https://raw.githubusercontent.com/CatValentine-Dev/pterodactylthemes/main/instaladorportugues.sh)
}
german(){
bash <(curl https://raw.githubusercontent.com/CatValentine-Dev/pterodactylthemes/main/instaladorgerman.sh)
}
english(){
bash <(curl https://raw.githubusercontent.com/CatValentine-Dev/pterodactylthemes/main/instaladorenglish.sh)
}
CYAN='\033[0;36m'
echo -e "${CYAN}Copyright (c) 2022 TemuxOS"
echo -e "${CYAN}This Software is opensource."
echo -e "Theme Instalator"
echo -e "${CYAN}Discord: https://discord.gg/WkVVtTaBRh/"
echo -e "Select your Language"
echo -e "${CYAN}[1] Portuguese"
echo -e "${CYAN}[2] German"
echo -e "${CYAN}[3] English"
echo -e "${CYAN}[4] Exit"
read -p "Insira um numero: " choice
if [ $choice == "1" ]
then
portuguese
fi
if [ $choice == "2" ]
then
german
fi
if [ $choice == "3" ]
then
english
fi
if [ $choice == "4" ]
then
exit
fi