19 lines
484 B
Bash
19 lines
484 B
Bash
#!/bin/bash
|
|
|
|
BASE_URL="https://git.miomio.moe/mio/easyzsh/raw/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
|