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