-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtermux-packages
executable file
·269 lines (211 loc) · 4.03 KB
/
termux-packages
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
#!/bin/bash
# dependencies /////////////////////////////////////////////////////////////////
if [[ -z $(command -v frobulator) ]]
then
if [[ $(id -u -n) = "root" ]]
then
SUDO_HOME=/root
USER="${SUDO_USER}"
HOME=/home/"${USER}"
fi
if [[ -z $(command -v curl) ]]
then
yes | apt-get install curl
fi
if [ ! -d "${HOME}"/.local/bin ]
then
mkdir -p "${HOME}"/.local/bin
fi
curl -s -L get.frbltr.app > "${HOME}"/.local/bin/frobulator
chmod +x "${HOME}"/.local/bin/frobulator
fi
. "${HOME}"/.local/bin/frobulator
# script ///////////////////////////////////////////////////////////////////////
script=$(basename -- "${BASH_SOURCE[0]}")
# version //////////////////////////////////////////////////////////////////////
version="12-21-2024"
# usage ////////////////////////////////////////////////////////////////////////
# prompt ///////////////////////////////////////////////////////////////////////
frobulator.script "Setting up ${script#*-}"
# variables ////////////////////////////////////////////////////////////////////
# defaults /////////////////////////////////////////////////////////////////////
# functions ////////////////////////////////////////////////////////////////////
failsafe_intent () {
# run failsafe termux package and repository update:
# mitigate general deployment setup issues
# mitigate skipped packages on install
frobulator.fwd "Please wait${marker_elp}"
echo
yes | apt update > "${sink}" 2>&1
yes | apt full-upgrade > "${sink}" 2>&1
}
failsafe_intent
failsafe_intent
# update packages list
frobulator.update
# upgrade installed packages
frobulator.upgrade
# values ///////////////////////////////////////////////////////////////////////
display_list+=(
virglrenderer
virglrenderer-android
xwayland
)
documentation_list+=(
man
)
extensions_list+=(
termux-am
termux-am-socket
termux-api
termux-apt-repo
termux-auth
termux-create-package
termux-elf-cleaner
termux-exec
termux-gui-bash
termux-gui-c
termux-gui-package
termux-gui-pm
termux-keyring
termux-licenses
termux-services
termux-tools
termux-x11-nightly
)
fonts_list+=(
)
i3_list+=(
i3
i3status
)
i3_addons_list+=(
dmenu
dunst
feh
picom
rofi
st
surf
qiv
)
icon_themes_list+=(
papirus-icon-theme
)
multimedia_list+=(
ffmpeg
flac
gstreamer
gst-plugins-good
gst-plugins-bad
gst-plugins-ugly
gst-plugins-base
)
repositories_list+=(
root-repo
x11-repo
)
security_list+=(
)
utilities_list+=(
apt
apt-file
blk-utils
fakeroot
git
hub
htop
ncurses
ncurses-utils
openssh
proot
ranger
zip
unzip
bzip2
gzip
lzip
p7zip
pip
rsync
tree
wget
)
xfce_list+=(
xfce4
xfce4-appfinder
xfce4-dict
xfce4-notifyd
xfce4-panel
xfce4-screenshooter
xfce4-session
xfce4-settings
xfce4-taskmanager
xfce4-terminal
galculator
gigolo
mousepad
parole
thunar
thunar-archive-plugin
ristretto
tumbler
)
xfce_fonts_list+=(
)
xfce_themes_list+=(
# arc-theme
adwaita-icon-theme
adwaita-icon-theme-full
)
xfce_addons_list+=(
xfce4-calculator-plugin
xfce4-clipman-plugin
xfce4-datetime-plugin
xfce4-eyes-plugin
xfce4-mailwatch-plugin
xfce4-netload-plugin
xfce4-notes-plugin
xfce4-places-plugin
xfce4-timer-plugin
xfce4-wavelan-plugin
xfce4-whiskermenu-plugin
)
# environment //////////////////////////////////////////////////////////////////
# console
if [[ $(cat "${HOME}"/.dextop/dextop-environment) = "console" ]]
then
desktop_environment_list+=()
fi
# i3
if [[ $(cat "${HOME}"/.dextop/dextop-environment) = "i3" ]]
then
desktop_environment_list+=(
${i3_list[@]}
${i3_addons_list[@]}
)
fi
# xfce
if [[ $(cat "${HOME}"/.dextop/dextop-environment) = "xfce" ]]
then
desktop_environment_list+=(
${xfce_list[@]}
${xfce_fonts_list[@]}
${xfce_themes_list[@]}
)
# ${xfce_addons_list[@]}
fi
# install #
install_list+=(
${repositories_list[@]}
${display_list[@]}
${documentation_list[@]}
${extensions_list[@]}
${fonts_list[@]}
${icon_themes_list[@]}
${multimedia_list[@]}
${security_list[@]}
${utilities_list[@]}
${desktop_environment_list[@]}
)
frobulator.install ${install_list[@]}