From d4a22e5f6878579414c46d35481aa81c5c863c8b Mon Sep 17 00:00:00 2001 From: thelamer Date: Sun, 11 Feb 2024 13:56:27 -0800 Subject: [PATCH] add pwa icons, title properly --- Dockerfile | 8 ++++++++ Dockerfile.aarch64 | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/Dockerfile b/Dockerfile index eb3c78ad..dac57183 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,12 +6,20 @@ ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="thelamer" +# title +ENV TITLE="Debian i3" + RUN \ + echo "**** add icon ****" && \ + curl -o \ + /kclient/public/icon.png \ + https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png && \ echo "**** install packages ****" && \ apt-get update && \ DEBIAN_FRONTEND=noninteractive \ apt-get install -y --no-install-recommends \ chromium \ + chromium-l10n \ i3 \ i3-wm \ stterm && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 2dcd700d..6a829897 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -6,12 +6,20 @@ ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="thelamer" +# title +ENV TITLE="Debian i3" + RUN \ + echo "**** add icon ****" && \ + curl -o \ + /kclient/public/icon.png \ + https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png && \ echo "**** install packages ****" && \ apt-get update && \ DEBIAN_FRONTEND=noninteractive \ apt-get install -y --no-install-recommends \ chromium \ + chromium-l10n \ i3 \ i3-wm \ stterm && \