#!/usr/bin/env bash set -euo pipefail SERVICE_NAME="com.maddin.whisper-transcript-pipeline.service" UNIT_PATH="$HOME/.config/systemd/user/$SERVICE_NAME" systemctl --user disable --now "$SERVICE_NAME" >/dev/null 2>&1 || true systemctl --user daemon-reload rm -f "$UNIT_PATH" echo "Uninstalled $SERVICE_NAME"