Dotfiles V1.3.7

Fixed \ Problem for AI Prompt
This commit is contained in:
2026-01-07 10:54:38 +01:00
parent 165393ed81
commit b3db0e3f08
2 changed files with 34 additions and 5 deletions

29
setup.sh Executable file
View File

@@ -0,0 +1,29 @@
#!/bin/zsh
echo "========================"
echo " Setup Script "
echo "========================"
# Check if running on macOS or Linux
if [[ "$(uname)" == "Darwin" ]]; then
OS="macOS"
elif [[ "$(uname)" == "Linux" ]]; then
OS="Linux"
else
error "Unsupported OS: $(uname)"
exit 1
fi
success "Detected OS: $OS"
if [[ "$OS" == "macOS" ]]; then
echo "==========================="
echo " Installing Brew "
echo "==========================="
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
else
echo "Maybe someday Linux..."
fi