From b371d07eedae54a0eda9870032a57e689337cf69 Mon Sep 17 00:00:00 2001 From: thelamer Date: Sun, 11 Feb 2024 12:49:43 -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 788cc756..034c769c 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 XFCE" + 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 \ libxfce4ui-utils \ mousepad \ tango-icon-theme \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index fbe387ab..deae6cb2 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 XFCE" + 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 \ libxfce4ui-utils \ mousepad \ tango-icon-theme \