2 changed files with 35 additions and 0 deletions
@ -0,0 +1,4 @@ |
|||
FROM scratch |
|||
|
|||
# copy local files |
|||
COPY root/ / |
@ -0,0 +1,31 @@ |
|||
#!/usr/bin/with-contenv bash |
|||
|
|||
echo '-------------------------' |
|||
echo '| Emby 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/emby/dashboard-ui/index.html; then |
|||
echo '---------------------------' |
|||
echo '| Adding the stylesheet |' |
|||
echo '---------------------------' |
|||
sed -i "s/<\/body>/<link rel='stylesheet' href='https:\/\/${TP_DOMAIN}\/theme.park\/CSS\/themes\/jellyfin\/${TP_THEME}.css'><\/body> /g" /app/emby/dashboard-ui/index.html |
|||
printf 'Stylesheet set to %s\n' "${TP_THEME} |
|||
" |
|||
fi |
Loading…
Reference in new issue