mirror of
https://github.com/tw93/Mole.git
synced 2026-02-04 20:54:50 +00:00
32 lines
921 B
Bash
Executable File
32 lines
921 B
Bash
Executable File
#!/bin/bash
|
|
# One-line Raycast integration installer
|
|
# Usage: curl -fsSL https://raw.githubusercontent.com/tw93/Mole/main/integrations/setup-raycast.sh | bash
|
|
|
|
set -euo pipefail
|
|
|
|
GREEN='\033[0;32m'
|
|
YELLOW='\033[1;33m'
|
|
NC='\033[0m'
|
|
|
|
RAYCAST_DIR="$HOME/Documents/Raycast/Scripts"
|
|
BASE_URL="https://raw.githubusercontent.com/tw93/Mole/main/integrations/raycast"
|
|
|
|
# Check Raycast
|
|
if [[ ! -d "/Applications/Raycast.app" ]]; then
|
|
echo -e "${YELLOW}Raycast not found. Install from: https://raycast.com${NC}"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Installing Mole commands for Raycast..."
|
|
mkdir -p "$RAYCAST_DIR"
|
|
|
|
# Download scripts
|
|
for script in mole-clean.sh mole-clean-dry-run.sh mole-uninstall.sh; do
|
|
curl -fsSL "$BASE_URL/$script" -o "$RAYCAST_DIR/$script"
|
|
chmod +x "$RAYCAST_DIR/$script"
|
|
done
|
|
|
|
echo -e "${GREEN}✓${NC} Installed! Open Raycast and search: 'Reload Script Directories'"
|
|
echo ""
|
|
echo "Then search for: 'Clean Mac'"
|