mirror of
https://github.com/tw93/Mole.git
synced 2026-02-07 17:24:17 +00:00
33 lines
725 B
Bash
Executable File
33 lines
725 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Required parameters:
|
|
# @raycast.schemaVersion 1
|
|
# @raycast.title Uninstall Apps
|
|
# @raycast.mode fullOutput
|
|
# @raycast.packageName Mole
|
|
|
|
# Optional parameters:
|
|
# @raycast.icon 🗑️
|
|
# @raycast.needsConfirmation true
|
|
|
|
# Documentation:
|
|
# @raycast.description Completely uninstall apps using Mole
|
|
# @raycast.author tw93
|
|
# @raycast.authorURL https://github.com/tw93/Mole
|
|
|
|
# Detect mo/mole installation
|
|
if command -v mo >/dev/null 2>&1; then
|
|
MO_BIN="mo"
|
|
elif command -v mole >/dev/null 2>&1; then
|
|
MO_BIN="mole"
|
|
else
|
|
echo "❌ Mole not found. Install from:"
|
|
echo " https://github.com/tw93/Mole"
|
|
exit 1
|
|
fi
|
|
|
|
# Run uninstall
|
|
echo "🗑️ Starting app uninstaller..."
|
|
echo ""
|
|
"$MO_BIN" uninstall
|