View difference between Paste ID: HdiRbuze and H5J9faCU
SHOW: | | - or go back to the newest paste.
1
#!/data/data/com.termux/files/usr/bin/bash
2
 
3
echo -e "Updating default packages\n"
4
apt update && apt -y upgrade
5
 
6
echo -e "Requesting acces to storage\n"
7
termux-setup-storage
8
sleep 5
9
 
10
echo -e "Installing aria2\n"
11
pkg install -y aria2
12
 
13
echo -e "Installing ffmpeg\n"
14
pkg install -y ffmpeg
15
 
16
echo -e "Installing atomicparsley\n"
17
pkg install -y atomicparsley
18
 
19
echo -e "Installing imagemagick\n"
20
pkg install -y imagemagick
21
 
22
echo -e "Installing ghostscript\n"
23
pkg install -y ghostscript
24
 
25
echo -e "Installing nano\n"
26
pkg install -y nano
27
 
28
echo -e "Installing man\n"
29
pkg install -y man
30
 
31
echo -e "Installing lynx\n"
32
pkg install -y lynx
33
 
34
echo -e "Installing curl\n"
35
pkg install -y curl
36
 
37
echo -e "Installing qpdf\n"
38
pkg install -y qpdf
39
 
40
echo -e "Installing termux-tools\n"
41
pkg install -y termux-tools
42
 
43
echo -e "Installing util-linux\n"
44
pkg install -y util-linux
45
 
46
echo -e "Installing python\n"
47
pkg install -y python
48
 
49
echo -e "Installing yt-dlp\n"
50
yes | pip install yt-dlp
51
  
52
echo -e "Creating the Description folder to download the files\n"
53
mkdir ~/storage/shared/Description
54
55
echo -e "Creating the Description/Auto-SubT-English folder to download the files\n"
56
mkdir ~/storage/shared/Description/Auto-SubT-English
57
 
58
echo -e "Creating the Description/Auto-SubT-Telugu folder to download the files\n"
59
mkdir ~/storage/shared/Description/Auto-SubT-Telugu
60
61
echo -e "Creating bin folder\n"
62
mkdir ~/bin
63
64
echo -e "Downloading and installing organize in usr folder\n"
65
66
wget https://pastebin.com/raw/f2Pq5tzp -O /data/data/com.termux/files/usr/bin/organize
67
dos2unix /data/data/com.termux/files/usr/bin/organize
68
chmod 777 /data/data/com.termux/files/usr/bin/organize
69
 
70
echo -e "Downloading and installing termux-url-opener\n"
71
wget https://pastebin.com/raw/bJdjxdJt -O ~/bin/termux-url-opener
72
dos2unix ~/bin/termux-url-opener
73
74
echo -e "Downloading vtt2text file\n"
75
wget https://pastebin.com/raw/KPubVHTP -O ~/vtt2text.py
76
 
77
echo -e "Downloading and installing .bashrc file\n"
78
wget https://pastebin.com/raw/H5Cttavy -O ~/.bashrc
79
dos2unix ~/.bashrc
80
81