-
Notifications
You must be signed in to change notification settings - Fork 0
/
termux-essentials.sh
100 lines (96 loc) · 1.16 KB
/
termux-essentials.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
#!/usr/bin/env bash
PKGS=(
'x11-repo'
'file'
'man'
'termux-services'
'tsu'
'git'
'binutils'
'htop-legacy'
'wget'
'nginx'
'tor'
'torsocks'
'rsync'
'python'
'python2'
'openssh'
'tsu'
'ffmpeg'
'moreutils'
'root-repo'
'ncdu'
'nmap-ncat'
'nodejs'
'fish'
'rust'
'clang'
'make'
'cmake'
'sqlite'
'vim'
'unrar'
'zstd'
'expect'
'ghostscript'
'hugo'
'httrack'
'php'
'php-fpm'
'mariadb'
'postgresql'
'pv'
'neofetch'
'golang'
'html2text'
'tidy'
'qemu-utils'
'qemu-common'
'qemu-system-x86-64-headless'
'perl'
'secure-delete'
'proot'
'recode'
'cpulimit'
'wireguard-tools'
'micro'
'cronie'
'links'
'wget2'
'gnupg'
'rclone'
'exiftool'
'qpdf'
'jq'
'net-tools'
'mailutils'
'apache2'
'coreutils'
'openssl-tool'
'tree'
'pkg-config'
'icoutils'
'html-xml-utils'
'dnsutils'
'termux-api'
'proot-distro'
'gping'
'bash-completion'
'busybox'
'tar'
'axel'
'pastebinit'
'lf'
'irssi'
'newsboat'
'tigervnc'
'openbox'
'mpg123'
'tmux'
)
pkg update
for PKG in "${PKGS[@]}"; do
echo -e "INSTALLING: ${PKG}"
apt-get install -yy "$PKG"
done