From 7f684f98f168f430ac1bc652d88675eec61ee0d0 Mon Sep 17 00:00:00 2001 From: Christian Colglazier Date: Wed, 18 Feb 2026 14:14:58 -0500 Subject: [PATCH] feat(scripts): add chezmoi dotfiles updater to update script --- home/bin/executable_update.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/home/bin/executable_update.sh b/home/bin/executable_update.sh index baa0f33..bb38cb9 100644 --- a/home/bin/executable_update.sh +++ b/home/bin/executable_update.sh @@ -2,6 +2,14 @@ # This script is a catch all program updater. +# Chezmoi Updater +function chezmoiUpdate { + if command -v chezmoi &> /dev/null; then + echo Updating chezmoi dotfiles... + chezmoi update + fi +} + # DNF Updater function dnfUpdate { if command -v dnf &> /dev/null; then @@ -55,6 +63,8 @@ function manualUpdate { fi } +chezmoiUpdate +echo '' dnfUpdate aptUpdate echo ''