From 9151edaaa47f12dde9701d64c39662d3082b4c18 Mon Sep 17 00:00:00 2001 From: mingzailao Date: Fri, 29 Mar 2024 14:53:39 +0800 Subject: [PATCH] no message --- initialize.sh | 31 ++++++++++++++++++++++++++----- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/initialize.sh b/initialize.sh index cbad9ea..3259dc3 100644 --- a/initialize.sh +++ b/initialize.sh @@ -1,12 +1,33 @@ +#!/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 +} + # install home-brew +install_homebrew + # install zsh # install oh-my-zsh -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) +#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) # install powerlevel10k -git clone https://git.mingzailao.live/mingzailao/powerlevel10k.git ~/powerlevel10k -echo 'source ~/powerlevel10k/powerlevel10k.zsh-theme' >>~/.zshrc +#git clone https://git.mingzailao.live/mingzailao/powerlevel10k.git ~/powerlevel10k +#echo 'source ~/powerlevel10k/powerlevel10k.zsh-theme' >>~/.zshrc