diff --git a/home/.chezmoiscripts/universal/run_after_01-pre-install.sh.tmpl b/home/.chezmoiscripts/universal/run_after_01-pre-install.sh.tmpl index 6777e698..ab013784 100644 --- a/home/.chezmoiscripts/universal/run_after_01-pre-install.sh.tmpl +++ b/home/.chezmoiscripts/universal/run_after_01-pre-install.sh.tmpl @@ -153,7 +153,6 @@ applyRootConfig() { ### Copy Autorestic configurations logg info "Copying ${XDG_CONFIG_HOME:-$HOME/.config}/autorestic/autorestic-system.yml file to $ROOT_FOLDER/.autorestic.yml" && sudo cp -f "${XDG_CONFIG_HOME:-$HOME/.config}/autorestic/autorestic-system.yml" "$ROOT_FOLDER/.autorestic.yml" - logg info "Removing ${XDG_CONFIG_HOME:-$HOME/.config}/autorestic/autorestic-system.yml" && sudo rm -f "${XDG_CONFIG_HOME:-$HOME/.config}/autorestic/autorestic-system.yml" logg info "Applying proper permissions to $ROOT_FOLDER/.autorestic.yml" && sudo chmod 600 "$ROOT_FOLDER/.autorestic.yml" fi } diff --git a/home/Library/Group Containers/group.com.docker/settings.json.tmpl b/home/Library/Group Containers/group.com.docker/settings.json.tmpl index 839de608..41d5ef7f 100644 --- a/home/Library/Group Containers/group.com.docker/settings.json.tmpl +++ b/home/Library/Group Containers/group.com.docker/settings.json.tmpl @@ -26,12 +26,12 @@ "displaySwitchWinLinContainers": false, "displayed18362Deprecation": false, "displayedElectronPopup": [], - "displayedOnboarding": false, + "displayedOnboarding": true, "dockerAppLaunchPath": "/Applications/Docker.app", "dockerBinInstallPath": "system", "enableDefaultDockerSocket": true, "enableIntegrationWithDefaultWslDistro": false, - "enableIntegrityCheck": false, + "enableIntegrityCheck": true, "enableSegmentDebug": false, "enableWasmShims": true, "enhancedContainerIsolation": false, @@ -72,7 +72,7 @@ "showAnnouncementNotifications": false, "showExtensionsSystemContainers": false, "showGeneralNotifications": false, - "showInstallScreen": true, + "showInstallScreen": false, "showKubernetesSystemContainers": false, "showSurveyNotifications": false, "skipUpdateToWSLPrompt": false, diff --git a/home/dot_local/bin/executable_installx b/home/dot_local/bin/executable_installx index a6c3e195..b28fa8ed 100644 --- a/home/dot_local/bin/executable_installx +++ b/home/dot_local/bin/executable_installx @@ -496,7 +496,7 @@ async function main() { log(`Running post-install script for ${x.listKey}`) return (postField && runScript(x.listKey, x[postField])) || Promise.resolve() }) - await Promise.all(postScripts) + await Promise.allSettled(postScripts) } main()