mirror of
https://github.com/DictXiong/dotfiles.git
synced 2024-11-24 16:27:02 +08:00
24 lines
1.1 KiB
Bash
Executable File
24 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
declare -A INSTALL_COMMANDS
|
|
INSTALL_COMMANDS=(\
|
|
[git]="apt update && apt install git" \
|
|
[fzf]="git clone --depth 1 https://gitee.com/dictxiong/fzf.git ~/.fzf && ~/.fzf/install" \
|
|
[acme.sh]="curl https://get.acme.sh | sh -s email=${EMAIL:-me@beardic.cn}" \
|
|
[oh-my-zsh]='sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"' \
|
|
[oh-my-tuna]='wget https://tuna.moe/oh-my-tuna/oh-my-tuna.py && sudo python oh-my-tuna.py --global' \
|
|
[v2fly]="bash <(curl -L https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh) #--remove" \
|
|
[zerotier-one]='curl -s https://install.zerotier.com | sudo bash' \
|
|
[docker-ce]='curl -fsSL https://get.docker.com | sudo bash -s - --mirror Aliyun #--dry-run' \
|
|
[lemonbench]='curl -fsSL https://raw.githubusercontent.com/LemonBench/LemonBench/main/LemonBench.sh | bash -s fast # or full' \
|
|
[nix]='sh <(curl -L https://nixos.org/nix/install) #--daemon' \
|
|
[alist]='curl -fsSL "https://alist.nn.ci/v3.sh" | bash -s install' \
|
|
)
|
|
|
|
install()
|
|
{
|
|
echo -e ${INSTALL_COMMANDS[$1]}
|
|
}
|
|
|
|
install $1
|