From 55f7205936396148ffbbf64b81ea79b0d9a23608 Mon Sep 17 00:00:00 2001 From: gilbN <24592972+gilbN@users.noreply.github.com> Date: Mon, 21 Dec 2020 01:19:39 +0100 Subject: [PATCH] added sabnzbd --- sabnzbd/Dockerfile | 4 +++ sabnzbd/root/etc/cont-init.d/98-themepark | 31 +++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 sabnzbd/Dockerfile create mode 100644 sabnzbd/root/etc/cont-init.d/98-themepark diff --git a/sabnzbd/Dockerfile b/sabnzbd/Dockerfile new file mode 100644 index 00000000..faefca3a --- /dev/null +++ b/sabnzbd/Dockerfile @@ -0,0 +1,4 @@ +FROM scratch + +# copy local files +COPY root/ / \ No newline at end of file diff --git a/sabnzbd/root/etc/cont-init.d/98-themepark b/sabnzbd/root/etc/cont-init.d/98-themepark new file mode 100644 index 00000000..7c17301d --- /dev/null +++ b/sabnzbd/root/etc/cont-init.d/98-themepark @@ -0,0 +1,31 @@ +#!/usr/bin/with-contenv bash + +echo '----------------------------' +echo '| SABnzbd theme.park Mod |' +echo '----------------------------' + +# Display variables for troubleshooting +echo -e "Variables set:\\n\ +'TP_DOMAIN'=${TP_DOMAIN}\\n\ +'TP_THEME'=${TP_THEME}\\n" + +# Set default +if [[ -z ${TP_DOMAIN} ]]; then + echo 'No domain set, defaulting to gilbn.github.io' + TP_DOMAIN='gilbn.github.io' +fi + +if [[ -z ${TP_THEME} ]]; then + echo 'No theme set, defaulting to organizr-dark' + TP_THEME='organizr-dark' +fi + +# Adding stylesheets +if ! grep -q "${TP_DOMAIN}" /app/sabnzbd/interfaces/Glitter/templates/main.tmpl; then + echo '---------------------------' + echo '| Adding the stylesheet |' + echo '---------------------------' + sed -i "s/<\/head>/<\/head> /g" /app/sabnzbd/interfaces/Glitter/templates/main.tmpl + printf 'Stylesheet set to %s\n' "${TP_THEME} + " +fi \ No newline at end of file