#!/bin/bash
echo "🧼 Running safe daily maintenance..."
# Clear caches
sudo rm -rf ~/Library/Caches/* /Library/Caches/*
# Flush DNS
sudo dscacheutil -flushcache
sudo killall -HUP mDNSResponder 2>/dev/null || true
# Refresh Spotlight
sudo mdutil -i on /
# Brew cleanup
brew cleanup &>/dev/null
echo "✨ Daily maintenance complete!"