Skip to content

Instantly share code, notes, and snippets.

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

Venkatesh S venkeythemonkey

💭
I may be slow to respond.
View GitHub Profile
@venkeythemonkey
venkeythemonkey / distrobox-macos-setup.sh
Created June 11, 2026 14:34 — forked from gianlucamazza/distrobox-macos-setup.sh
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"