diff --git a/.local/share/chezmoi/home/dot_local/bin/executable_install-program b/.local/share/chezmoi/home/dot_local/bin/executable_install-program index cd6c39d3..245f174b 100644 --- a/.local/share/chezmoi/home/dot_local/bin/executable_install-program +++ b/.local/share/chezmoi/home/dot_local/bin/executable_install-program @@ -558,7 +558,7 @@ async function installPackageList(packageManager, packages) { if (packageManager === 'appimage') { } else if (packageManager === 'ansible') { for (const role of packages) { - await $`ansible localhost -m setup -m include_role -a name=${role} -e ansible_user="$USER"` + execSync('gum spin --spinner dot --title "Installing ' + role + ' via Ansible" -- ansible localhost -m setup -m include_role -a name=' + role + ' -e ansible_user="$USER"', , {stdio: 'inherit', shell: true}) } } else if (packageManager === 'apk') { await $`sudo apk add ${packages}`