#!/usr/bin/env bash # Remove the wyoming-parakeet LaunchDaemon. Leaves the checkout and the # downloaded model in ~/.cache/huggingface alone. set -euo pipefail LABEL="local.wyoming-parakeet" PLIST="/Library/LaunchDaemons/$LABEL.plist" echo "==> Stopping $LABEL" sudo launchctl bootout "system/$LABEL" 2>/dev/null || echo " (not running)" if [[ -f "$PLIST" ]]; then echo "==> Removing $PLIST" sudo rm -f "$PLIST" fi cat <