Begin adding code for checking for updates upon terminal opening.

This commit is contained in:
2026-04-17 15:34:42 -07:00
parent 890bc05e4d
commit 21b2ddf4a5

View File

@@ -96,6 +96,16 @@ alias shared-update="update-shared"
alias reload-shared="update-shared"
alias shared-reload="update-shared"
project="$HOME/.env-shared"
function update-shared2 {
if [[ ! -d $project ]]; then
fi
}
if [[ -d $project ]]; then
git -C $project status
fi &
# Shortcuts #
function send-master { send_master.sh; }