This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export ZSH_CUSTOM=$HOME/.oh-my-zsh | |
# Check if Git is installed | |
if ! command -v git &> /dev/null; then | |
echo "Git is not installed. Installing Git..." | |
# Install Git (You may need to adjust this based on your package manager) | |
sudo apt-get install git # For Debian/Ubuntu | |
# or |