Browse Source

added lazylibrarian

pull/149/head
gilbN 5 years ago
parent
commit
81b5b69ed0
  1. 4
      lazylibrarian/Dockerfile
  2. 31
      lazylibrarian/root/etc/cont-init.d/98-themepark

4
lazylibrarian/Dockerfile

@ -0,0 +1,4 @@
FROM scratch
# copy local files
COPY root/ /

31
lazylibrarian/root/etc/cont-init.d/98-themepark

@ -0,0 +1,31 @@
#!/usr/bin/with-contenv bash
echo '----------------------------------'
echo '| Lazylibrarian 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/lazylibrarian/data/interfaces/bookstrap/base.html; then
echo '---------------------------'
echo '| Adding the stylesheet |'
echo '---------------------------'
sed -i "s/<\/head>/<link rel='stylesheet' href='https:\/\/${TP_DOMAIN}\/theme.park\/CSS\/themes\/lazylibrarian\/${TP_THEME}.css'><\/head> /g" /app/lazylibrarian/data/interfaces/bookstrap/base.html
printf 'Stylesheet set to %s\n' "${TP_THEME}
"
fi
Loading…
Cancel
Save