Files
JirR02 2e0989ce0d Dotfiles V1.4.3
Improved LaTeX table snippet
2026-03-23 10:24:31 +01:00

30 lines
622 B
Bash
Executable File

#!/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