diff --git a/configs/ionos-links.config.php b/configs/ionos-links.config.php index 911598f..0014af5 100644 --- a/configs/ionos-links.config.php +++ b/configs/ionos-links.config.php @@ -9,4 +9,6 @@ 'ionos_customclient_android' => 'https://wl.hidrive.com/easy/0022', 'ionos_customclient_ios' => 'https://wl.hidrive.com/easy/0021', 'ionos_customclient_ios_appid' => '1439073561', + 'ionos_homepage' => 'https://ionos.fr/', + 'simpleSignUpLink.shown' => false, ]; diff --git a/configure.sh b/configure.sh index a8f5acf..5ad3cff 100755 --- a/configure.sh +++ b/configure.sh @@ -35,11 +35,19 @@ config_ui() { echo "Configure theming" ooc theming:config name "HiDrive Next" + ooc theming:config slogan "powered by IONOS" + ooc theming:config imprintUrl " " + ooc theming:config privacyUrl " " ooc theming:config primary_color "#003D8F" ooc theming:config disable-user-theming yes ooc theming:config favicon "${FAVICON_DIR}/favicon.ico" ooc config:app:set theming backgroundMime --value backgroundColor ooc config:system:set defaultapp --value files + + IONOS_HOMEPAGE=$(ooc config:system:get ionos_homepage) + if [ -n "${IONOS_HOMEPAGE}" ]; then + ooc theming:config url "${IONOS_HOMEPAGE}" + fi } configure_app_nc_ionos_processes() {