add-fastfetch

This commit is contained in:
Jackson Delahunt 2023-11-01 22:14:44 +11:00
parent dcbee2e701
commit 51e0bd399d

View file

@ -205,6 +205,15 @@ RUN apt-get update -qq && \
make all && \
make install
# Install fastfetch
RUN git clone https://github.com/fastfetch-cli/fastfetch /opt/fastfetch && \
cd /opt/fastfetch && \
mkdir build && \
cd build && \
cmake .. && \
cmake --build . --target fastfetch --target flashfetch && \
install fastfetch /usr/local/bin
# Install gotop
RUN git clone --depth 1 https://github.com/xxxserxxx/gotop /opt/gotop && \
cd /opt/gotop && \