-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.sh
executable file
·105 lines (105 loc) · 4 KB
/
setup.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#!/bin/bash
while :
do
clear
echo -e "\e[1;31m"
echo '┌──────────────────────────────────────────────────────┐'
echo '│ │'
echo '│ ▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄ ▄▄▄▄ │'
echo '│ ▀▀▀██▀▀▀ ██▀▀▀▀█▄ ▀▀██ │'
echo '│ ██ ██ ██ ██ ▄█████▄ ▀██ ███ │'
echo '│ ██ ██████▀ ██ ▀ ▄▄▄██ ██▄ ██ │'
echo '│ ██ ██ ██ ▄██▀▀▀██ ████▀ │'
echo '│ ██ ██ ██▄▄▄ ██▄▄▄███ ███ │'
echo '│ ▀▀ ▀▀ ▀▀▀▀ ▀▀▀▀ ▀▀ ██ │'
echo '│ ███ │'
echo '│ │'
echo '└──────────────────────────────────────────────────────┘'
echo -e "\e[1;32m"
echo 'Press 1 to Install Dependencies'
echo 'Press 2 to Continue To TPlay'
echo 'Press 3 to Add TPlay To Bin'
echo 'Press 4 to Update TPlay'
echo 'Press 5 for Help'
echo 'Press 6 to Exit'
echo
echo -e "\e[1;34m"
read -p 'select_option >' opt
echo -e "\e[1;33m"
if [ $opt -eq 1 ];then
echo 'Make Sure You Have Installed Termux:API From PlayStore ...'
read -p 'Have You Installed Termux:API From Play Store (Y/N) : ' cho
if [ "$cho" = "Y" ] || [ "$cho" = "y" ] ;then
apt update && apt upgrade
apt install figlet git toilet curl python2 -y
pkg install termux-api
termux-setup-storage
if [[ -s $PREFIX/bin/termux-media-player ]] ;then
echo 'All Dependencies installed...'
read -p 'Do you want to add TPlay To bin (Y/N): ' ch
if [ "$ch" = "Y" ] || [ "$ch" = "y" ] ;then
echo 'cd' $PWD '&& python2 music.py' >$PREFIX/bin/tplay
echo 'exit' >$PREFIX/bin/tplay
chmod +x $PREFIX/bin/tplay
echo 'Added tplay to bin !!'
echo 'Now You Can Launch TPlay just by typing \e[1;31mtplay\e[1;33m anywhere!!!'
read -p 'Press Enter Key To Continue..' k
fi
else
echo 'Please Install Termux:API from PlayStore To Proceed...'
read -p 'Press Enter Key To Continue..' k
fi
else
echo 'Please Install Termux:API from PlayStore To Proceed...'
read -p 'Press Enter Key To Continue..' k
fi
elif [ $opt -eq 2 ];then
termux-setup-storage
python2 music.py
exit
elif [ $opt -eq 3 ];then
echo 'cd' $PWD '&& python2 music.py' >$PREFIX/bin/tplay
echo 'exit' >$PREFIX/bin/tplay
chmod +x $PREFIX/bin/tplay
termux-setup-storage
echo 'Added tplay to bin !!'
echo -e 'Now You Can Launch TPlay just by typing \e[1;31mtplay\e[1;33m anywhere!!!'
read -p 'Press Enter Key To Continue..' k
elif [ $opt -eq 4 ];then
apt install git -y
git clone https://github.com/TheSpeedX/TPlay
echo -e "\e[1;34m Downloading Latest Files..."
if [[ -s TPlay/setup.sh ]];then
cd TPlay
cp -r -f * .. > temp
cd ..
rm -rf TPlay >> temp
rm update.speedx >> temp
rm temp
chmod +x setup.sh
./setup.sh
fi
echo -e "\e[1;32m The Script Will Now Restart Please Choose Install Depedencies (option 1) To Verify the Working Of TPlay..."
echo -e "\e[1;34m Press Enter To Proceed To Restart..."
read a6
exit
elif [ $opt -eq 5 ];then
cat README.md
read -p 'Press Enter Key To Continue..' k
elif [ $opt -eq 6 ];then
clear
echo -e "\e[1;34m Created By SpeedX\e[0m"
echo -e "\e[4;32m This Player Was Created By SpeedX \e[0m"
echo -e "\e[1;34m For Any Queries Mail Me!!!\e[0m"
echo -e "\e[1;32m Mail: [email protected] \e[0m"
echo -e "\e[1;31m Whatsapp: https://bit.do/speedxgit \e[0m"
echo -e "\e[1;33m YouTube Page: https://www.youtube.com/c/GyanaTech \e[0m"
echo " "
exit 0
else
echo -e "\e[4;32m Invalid Input !!! \e[0m"
echo "Press Enter To Go Home"
read a3
clear
fi
done