From 44dc2291c4716b128a448f5725da6ab16566eb5b Mon Sep 17 00:00:00 2001 From: Brian Zalewski Date: Mon, 9 Jan 2023 13:38:35 +0000 Subject: [PATCH] Update 2 files - /home/dot_local/bin/executable_install-program - /home/.chezmoiscripts/universal/run_onchange_after_20-apply-settings.mjs.tmpl --- .../universal/run_onchange_after_20-apply-settings.mjs.tmpl | 2 +- home/dot_local/bin/executable_install-program | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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 {