diff --git a/README.md b/README.md index a2da61a..4d11859 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Just some everyday scripts for all my Linux shells. To `/usr/local/shared-scripts`: (recommended) ```bash -git clone https://githive.duckdns.org/shared/scripts ~/shared-scripts && \ +git clone https://git.oomem.org/shared/scripts ~/shared-scripts && \ sudo mv ~/shared-scripts /usr/local/ && \ echo -e "\n# Shared Scripts:\n. /usr/local/shared-scripts/startup.sh \"/usr/local/shared-scripts\"" >> ~/.bashrc ``` @@ -22,6 +22,6 @@ Auto-update via Cron job: To `$HOME/shared-scripts`: ```bash -git clone https://githive.duckdns.org/shared/scripts ~/shared-scripts && \ +git clone https://git.oomem.org/shared/scripts ~/shared-scripts && \ echo -e "\n# Shared Scripts\n. \$HOME/shared-scripts/startup.sh \"$HOME/shared-scripts\"" >> ~/.bashrc ``` diff --git a/after-setup b/after-setup index 1308736..dcfd421 100755 --- a/after-setup +++ b/after-setup @@ -25,7 +25,7 @@ EOF echo "Created .vimrc with jellybeans colorscheme." else sed -i '/^colorscheme/d' $HOME/.vimrc - echo "colorscheme jellybeans" >> $HOME/.vimrc + echo "colorscheme jellybeans" >> $HOME/.vimrcd echo "Updated .vimrc with jellybeans colorscheme." fi } @@ -56,7 +56,7 @@ run_setup_tmux() { # Get the absolute path to the directory containing this bash script SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" - + # Copy _tmux.conf to .tmux.conf in the user's home directory cp "$SCRIPT_DIR/templates/_tmux.conf" $HOME/.tmux.conf echo "Copied $SCRIPT_DIR/templates/_tmux.conf to $HOME/.tmux.conf"