Skip to content

Instantly share code, notes, and snippets.

View adonespitogo's full-sized avatar
💭
I may be slow to respond.

Adones Pitogo adonespitogo

💭
I may be slow to respond.
View GitHub Profile
@gianlucamazza
gianlucamazza / distrobox-macos-setup.sh
Created May 3, 2025 00:12
Installing Distrobox on macOS with full Podman support
#!/bin/bash
# Strict mode: exit on error, exit on unset variable, pipefail
set -euo pipefail
echo "🚀 Installing Distrobox on macOS with full Podman support..."
# 1. Check for Homebrew
if ! command -v brew >/dev/null 2>&1; then
echo "❌ Homebrew is not installed. Please install it first: https://brew.sh"