Customize zsh installation

This commit is contained in:
Frank Qing
2024-05-01 12:31:40 +08:00
parent f0b089dacc
commit ff76824283
5 changed files with 288 additions and 285 deletions

18
patch.sh Normal file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
BASE_URL="https://git.miomio.moe/mio/easyzsh/rss/branch/master/zshrc"
ZSH_CONFIGS_DIR="$HOME/.config/zshrc"
mkdir -p $ZSH_CONFIGS_DIR
if [ "$#" -gt 0 ]; then
for arg in "$@"; do
if ! wget "${BASE_URL}/${arg}.zsh" -O "${ZSH_CONFIGS_DIR}/${arg}.zsh"; then
echo "Failed to download ${arg}.zsh from ${BASE_URL}"
exit 1
fi
done
else
echo "No arguments provided. Please specify the config files to download."
exit 1
fi