diff --git a/home/.chezmoiscripts/universal/run_onchange_after_20-apply-settings.mjs.tmpl b/home/.chezmoiscripts/universal/run_onchange_after_20-apply-settings.mjs.tmpl index f8b83271..01c8deba 100644 --- a/home/.chezmoiscripts/universal/run_onchange_after_20-apply-settings.mjs.tmpl +++ b/home/.chezmoiscripts/universal/run_onchange_after_20-apply-settings.mjs.tmpl @@ -85,7 +85,7 @@ async function applyDconfSettings(settings) { if (dconf) { for (const setting of settings) { try { - const dconfCmd = 'dconf write ' + setting.key + ' ' + setting.value + const dconfCmd = 'dconf write ' + setting.key + ' "' + setting.value + '"' execSync(dconfCmd) log('success', 'Dconf', 'Changed ' + setting.key + ' to ' + setting.value) } catch (e) { diff --git a/home/dot_local/bin/executable_install-program b/home/dot_local/bin/executable_install-program index b78538b3..fb4642b7 100644 --- a/home/dot_local/bin/executable_install-program +++ b/home/dot_local/bin/executable_install-program @@ -1135,6 +1135,7 @@ async function installPackageList(packageManager, packages) { console.error(e) } } + log('warn', 'Install', 'Zap installs might fail - this is expected. Waiting on fixes to Zap upstream project') } else if (packageManager === 'ansible') { for (let pkg of packages) { try {