@@ -50,6 +50,7 @@ RUN apt-get update -qq && \
50
50
bc \
51
51
build-essential \
52
52
cargo \
53
+ cava \
53
54
cmake \
54
55
cmatrix \
55
56
curl \
@@ -66,6 +67,7 @@ RUN apt-get update -qq && \
66
67
fonts-noto-color-emoji \
67
68
g++ \
68
69
gcc \
70
+ gimp \
69
71
git \
70
72
golang-go \
71
73
gtk-theme-switch \
@@ -211,6 +213,13 @@ RUN git clone https://github.com/fastfetch-cli/fastfetch /opt/fastfetch && \
211
213
cmake --build . --target fastfetch --target flashfetch && \
212
214
install fastfetch /usr/local/bin
213
215
216
+ # Install gh
217
+ RUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg && \
218
+ chmod go+r /usr/share/keyrings/githubcli-archive-keyring.gpg && \
219
+ echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null && \
220
+ apt-get update -qq && \
221
+ apt-get install -qq gh
222
+
214
223
# Install gotop
215
224
RUN git clone --depth 1 https://github.com/xxxserxxx/gotop /opt/gotop && \
216
225
cd /opt/gotop && \
@@ -274,7 +283,7 @@ RUN go install github.com/darkhz/invidtui@latest
274
283
275
284
# Install jobber
276
285
RUN apt-get update -qq && \
277
- apt-get install -qq rsync && \
286
+ apt-get install -qq debhelper rsync && \
278
287
mkdir /opt/jobber && \
279
288
git clone --depth 1 https://github.com/dshearer/jobber /opt/jobber/jobber-src && \
280
289
cd /opt/jobber/jobber-src && \
@@ -355,6 +364,12 @@ RUN wget -O /usr/local/bin/timeago -nv https://raw.githubusercontent.com/sabreha
355
364
# Install tldr
356
365
RUN pipx install tldr
357
366
367
+ # Install ueberzugpp
368
+ RUN echo 'deb http://download.opensuse.org/repositories/home:/justkidding/xUbuntu_23.04/ /' | tee /etc/apt/sources.list.d/home:justkidding.list && \
369
+ curl -fsSL https://download.opensuse.org/repositories/home:justkidding/xUbuntu_23.04/Release.key | gpg --dearmor | tee /etc/apt/trusted.gpg.d/home_justkidding.gpg > /dev/null && \
370
+ apt-get update -qq && \
371
+ apt-get install -qq ueberzugpp
372
+
358
373
# Install vs code
359
374
RUN wget -O code.deb -nv "https://code.visualstudio.com/sha/download?build=stable&os=linux-deb-arm64" && \
360
375
dpkg -i code.deb && \
@@ -391,6 +406,9 @@ RUN apt-get update -qq && \
391
406
make install && \
392
407
cp /usr/lib/xava/out_x11_cairo.so /usr/lib/xava/out_x11_opengl.so
393
408
409
+ # Install xcolor
410
+ RUN cargo install xcolor
411
+
394
412
# Install yarn
395
413
RUN curl -fsSL https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
396
414
echo "deb https://dl.yarnpkg.com/debian stable main" | tee /etc/apt/sources.list.d/yarn.list && \
0 commit comments