Updated domain name.

This commit is contained in:
Ali
2026-03-24 11:23:12 +08:00
parent 13d2cae74a
commit e3e23c2c36
2 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ Just some everyday scripts for all my Linux shells.
To `/usr/local/shared-scripts`: (recommended) To `/usr/local/shared-scripts`: (recommended)
```bash ```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/ && \ sudo mv ~/shared-scripts /usr/local/ && \
echo -e "\n# Shared Scripts:\n. /usr/local/shared-scripts/startup.sh \"/usr/local/shared-scripts\"" >> ~/.bashrc 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`: To `$HOME/shared-scripts`:
```bash ```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 echo -e "\n# Shared Scripts\n. \$HOME/shared-scripts/startup.sh \"$HOME/shared-scripts\"" >> ~/.bashrc
``` ```

View File

@@ -25,7 +25,7 @@ EOF
echo "Created .vimrc with jellybeans colorscheme." echo "Created .vimrc with jellybeans colorscheme."
else else
sed -i '/^colorscheme/d' $HOME/.vimrc sed -i '/^colorscheme/d' $HOME/.vimrc
echo "colorscheme jellybeans" >> $HOME/.vimrc echo "colorscheme jellybeans" >> $HOME/.vimrcd
echo "Updated .vimrc with jellybeans colorscheme." echo "Updated .vimrc with jellybeans colorscheme."
fi fi
} }
@@ -56,7 +56,7 @@ run_setup_tmux() {
# Get the absolute path to the directory containing this bash script # Get the absolute path to the directory containing this bash script
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# Copy _tmux.conf to .tmux.conf in the user's home directory # Copy _tmux.conf to .tmux.conf in the user's home directory
cp "$SCRIPT_DIR/templates/_tmux.conf" $HOME/.tmux.conf cp "$SCRIPT_DIR/templates/_tmux.conf" $HOME/.tmux.conf
echo "Copied $SCRIPT_DIR/templates/_tmux.conf to $HOME/.tmux.conf" echo "Copied $SCRIPT_DIR/templates/_tmux.conf to $HOME/.tmux.conf"