From 6acbe02fad2a925912a7677a0c2f03f981b5292e Mon Sep 17 00:00:00 2001 From: Jeremy McClure Date: Sun, 12 Jul 2026 02:40:19 -0400 Subject: [PATCH] change script update location --- zsh/zshrc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/zsh/zshrc b/zsh/zshrc index bdc59b0..e2b2523 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -2,8 +2,10 @@ export ZSH_CONFIG=$HOME/.config/zsh export OHMYZSH=$ZSH_CONFIG/oh-my-zsh export OHMYZSH_CUSTOM=$OHMYZSH/custom -export ZSHRC_URL="https://jeremy-web.space/scripts/zshrc" -export ZSHRC_BOOTSTRAP_URL="https://jeremy-web.space/scripts/zshrc-bootstrap.zsh" +export ZSHRC_GIT="https://git.jeremymcclure.com/jeremy/scripts/raw/branch/master/zsh/" + +export ZSHRC_URL="$ZSHRC_GIT/zshrc" +export ZSHRC_BOOTSTRAP_URL="$ZSHRC_GIT/zshrc-bootstrap.zsh" export ZSHRC_BOOTSTRAP_VERSION="2" export ZSHRC_BOOTSTRAP="$ZSH_CONFIG/.bootstrapped" @@ -38,7 +40,7 @@ fi TMUXCONF="$HOME/.config/tmux" BYOBUCONF="$HOME/.config/byobu" -TMUXREMOTE="https://jeremy-web.space/scripts/tmux.conf" +TMUXREMOTE="$ZSHRC_GIT/tmux.conf" if [ ! -f "$TMUXCONF" ]; then # Create a secure temporary file TEMP_TMUXCONF=$(mktemp)