From e8cf4070b5e0ca0acb53f4a0465d21dfc0a8b1f8 Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Tue, 6 Jan 2026 14:11:24 -0300 Subject: [PATCH] nextcloud: set theming via app config --- scripts/nextcloud-maintenance.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/nextcloud-maintenance.sh b/scripts/nextcloud-maintenance.sh index 27c5270..67b92f1 100755 --- a/scripts/nextcloud-maintenance.sh +++ b/scripts/nextcloud-maintenance.sh @@ -16,11 +16,11 @@ run_occ() { log() { echo "[$(date -Is)] $*"; } log "Applying Atlas theming" -run_occ theming:config name "Atlas Cloud" -run_occ theming:config slogan "Unified access to Atlas services" -run_occ theming:config url "https://cloud.bstein.dev" -run_occ theming:config color "#0f172a" -run_occ theming:config disable-user-theming yes +run_occ config:app:set theming name --value "Atlas Cloud" +run_occ config:app:set theming slogan --value "Unified access to Atlas services" +run_occ config:app:set theming url --value "https://cloud.bstein.dev" +run_occ config:app:set theming color --value "#0f172a" +run_occ config:app:set theming disable-user-theming --value "yes" log "Applying Atlas Mail styling defaults" run_occ app:install customcss >/dev/null 2>&1 || true