From 40a0082fcab574a0548e64b55ccbd8b3445ff51f Mon Sep 17 00:00:00 2001 From: Andrew Rich <676392+smartwatermelon@users.noreply.github.com> Date: Wed, 2 Sep 2026 11:16:40 -0700 Subject: [PATCH] feat: dotfiles refresh function --- bash/functions.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bash/functions.sh b/bash/functions.sh index dfd3a2e..6599b37 100644 --- a/bash/functions.sh +++ b/bash/functions.sh @@ -918,6 +918,13 @@ wf() { } # Not exported +# Reinstall dotfiles and source profile in one step +dotfiles() { + "${HOME}/Developer/dotfiles/install.sh" --sync || return $? + source "${HOME}/.bash_profile" +} +# Not exported + # Extract compressed files (handles multiple formats) extract() { if [[ -f "$1" ]]; then