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

66 lines
1.8 KiB
Plaintext
Raw Normal View History

2021-09-27 23:20:36 +02:00
#!/usr/bin/with-contenv bash
echo '-------------------------'
2021-09-30 21:35:48 +02:00
echo '| Mylar3 theme.park Mod |'
2021-09-27 23:20:36 +02:00
echo '-------------------------'
APP_FILEPATH='/app/mylar3/data/interfaces/default'
if [ "${TP_HOTIO}" = true ]; then
echo 'Changing to Hotio file path!'
APP_FILEPATH='/app/data/interfaces/default'
fi
# Display variables for troubleshooting
echo -e "Variables set:\\n\
'APP_FILEPATH'=${APP_FILEPATH}\\n\
'TP_HOTIO'=${TP_HOTIO}\\n\
'TP_DOMAIN'=${TP_DOMAIN}\\n\
'TP_COMMUNITY_THEME'=${TP_COMMUNITY_THEME}\\n\
2022-03-23 07:49:40 +01:00
'TP_SCHEME'=${TP_SCHEME}\\n\
2021-09-27 23:20:36 +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
2022-03-23 07:49:40 +01:00
if [[ -z ${TP_SCHEME} ]]; then
echo 'No scheme set, defaulting to https'
TP_SCHEME='https'
fi
2021-09-27 23:20:36 +02:00
THEME_TYPE='theme-options'
if [ "${TP_COMMUNITY_THEME}" = true ]; then
THEME_TYPE='community-theme-options'
fi
2021-09-27 23:20:36 +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-27 23:20:36 +02:00
fi
sed_file(){
2022-03-23 07:49:40 +01:00
sed -i "s/<\/head>/<link rel='stylesheet' href='${TP_SCHEME}:\/\/${TP_DOMAIN}\/css\/base\/mylar3\/mylar3-base.css'><\/head> /g" $1
sed -i "s/<\/head>/<link rel='stylesheet' href='${TP_SCHEME}:\/\/${TP_DOMAIN}\/css\/${THEME_TYPE}\/${TP_THEME}.css'><\/head> /g" $1
2021-09-27 23:20:36 +02:00
printf 'Stylesheet set to %s on %s\n\n' "${TP_THEME}" "$1"
}
# Adding stylesheets
echo '---------------------------------------'
echo '| Adding the stylesheet to html files |'
echo '---------------------------------------'
2021-11-01 23:32:05 +01:00
if ! grep -q "${TP_DOMAIN}/css/base" "${APP_FILEPATH}/index.html"; then
2021-09-27 23:20:36 +02:00
find ${APP_FILEPATH} -type f -iname *.html | while read fname
do
sed_file $fname
done
fi