From fa11f41333cbeb7901a8f4346fe75fa7064e80bb Mon Sep 17 00:00:00 2001 From: thelamer Date: Sun, 11 Feb 2024 13:28:34 -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 a6e5c82d..51982170 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 KDE" + 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 \ dolphin \ gwenview \ kde-config-gtk-style \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 20bd6cb3..fbe792af 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 KDE" + 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 \ dolphin \ gwenview \ kde-config-gtk-style \