1
0
mirror of https://github.com/gilbN/theme.park.git synced 2024-10-04 06:27:11 +02:00
theme.park/docker-mods/emby/root/etc/cont-init.d/98-themepark

39 lines
1.0 KiB
Plaintext
Raw Normal View History

2021-09-20 23:43:51 +02:00
#!/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_COMMUNITY_THEME'=${TP_COMMUNITY_THEME}\\n\
2021-09-20 23:43:51 +02:00
'TP_THEME'=${TP_THEME}\\n"
# Set default
if [[ -z ${TP_DOMAIN} ]]; then
echo 'No domain set, defaulting to theme-park.dev'
TP_DOMAIN='theme-park.dev'
fi
THEME_TYPE='theme-options'
if [ "${TP_COMMUNITY_THEME}" = true ]; then
THEME_TYPE='community-theme-options'
fi
2021-09-20 23:43:51 +02:00
case ${TP_DOMAIN} in
*"github.io"*)
echo "Switching to github.io URL style"
TP_DOMAIN="${TP_DOMAIN}\/theme.park"
;;
esac
if [[ -z ${TP_THEME} ]]; then
2021-10-30 02:12:10 +02:00
echo 'No theme set, defaulting to organizr'
2021-10-15 19:40:40 +02:00
TP_THEME='organizr'
2021-09-20 23:43:51 +02:00
fi
# Adding stylesheets
printf '%s\n' "@import url('https://${TP_DOMAIN}/css/${THEME_TYPE}/${TP_THEME}.css');" "@import url('https://${TP_DOMAIN}/css/base/emby/emby-base.css');" > /app/emby/dashboard-ui/modules/themes/light/theme.css
printf 'Stylesheet set to %s\n' "${TP_THEME}"