From 51e0bd399d4fd70d680f51ad89b401c392c7654d Mon Sep 17 00:00:00 2001 From: Jackson Delahunt Date: Wed, 1 Nov 2023 22:14:44 +1100 Subject: [PATCH] add-fastfetch --- docker/Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docker/Dockerfile b/docker/Dockerfile index b65e94f..b374679 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -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 && \