mirror of
https://gh.catmak.name/https://github.com/mihomo-party-org/mihomo-party
synced 2025-12-26 20:50:30 +08:00
28 lines
958 B
Bash
Executable File
28 lines
958 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "=== Clash Party Cleanup Tool ==="
|
|
echo "This script will remove all Clash Party related files and services."
|
|
read -p "Are you sure you want to continue? (y/N) " -n 1 -r
|
|
echo
|
|
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
|
|
echo "Aborted."
|
|
exit 1
|
|
fi
|
|
|
|
# Stop and unload services
|
|
echo "Stopping services..."
|
|
sudo launchctl unload /Library/LaunchDaemons/party.mihomo.helper.plist 2>/dev/null || true
|
|
|
|
# Remove files
|
|
echo "Removing files..."
|
|
sudo rm -f /Library/LaunchDaemons/party.mihomo.helper.plist
|
|
sudo rm -f /Library/PrivilegedHelperTools/party.mihomo.helper
|
|
sudo rm -rf "/Applications/Clash Party.app"
|
|
sudo rm -rf "/Applications/Clash\\ Party.app"
|
|
sudo rm -rf ~/Library/Application\ Support/mihomo-party
|
|
sudo rm -rf ~/Library/Caches/mihomo-party
|
|
sudo rm -f ~/Library/Preferences/party.mihomo.app.helper.plist
|
|
sudo rm -f ~/Library/Preferences/party.mihomo.app.plist
|
|
|
|
echo "Cleanup complete. Please restart your computer to complete the process."
|