2024-03-29 14:53:39 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
|
|
install_homebrew() {
|
|
|
|
# Check if Homebrew is already installed
|
|
|
|
if command -v brew &> /dev/null; then
|
|
|
|
echo "Homebrew is already installed."
|
|
|
|
else
|
|
|
|
# Check if the system is macOS (Darwin)
|
|
|
|
if [ "$(uname -s)" == "Darwin" ]; then
|
|
|
|
echo "Installing Homebrew..."
|
|
|
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
|
|
|
else
|
|
|
|
echo "This script is intended for macOS only. Exiting..."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2024-03-21 07:11:07 +08:00
|
|
|
# install home-brew
|
2024-03-29 14:53:39 +08:00
|
|
|
install_homebrew
|
|
|
|
|
2024-03-21 07:11:07 +08:00
|
|
|
|
|
|
|
# install zsh
|
|
|
|
|
|
|
|
# install oh-my-zsh
|
2024-03-29 14:53:39 +08:00
|
|
|
#git clone https://git.mingzailao.live/mingzailao/ohmyzsh.git ~/.oh-my-zsh
|
|
|
|
#cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
|
|
|
|
#chsh -s $(which zsh)
|
2024-03-21 07:11:07 +08:00
|
|
|
|
2024-03-26 18:07:04 +08:00
|
|
|
# install powerlevel10k
|
2024-03-29 14:53:39 +08:00
|
|
|
#git clone https://git.mingzailao.live/mingzailao/powerlevel10k.git ~/powerlevel10k
|
|
|
|
#echo 'source ~/powerlevel10k/powerlevel10k.zsh-theme' >>~/.zshrc
|