13 lines
353 B
Bash
Executable File
13 lines
353 B
Bash
Executable File
#!/bin/bash
|
|
cd "$(dirname "$0")"
|
|
source venv/bin/activate
|
|
|
|
# WICHTIG: Fängt Strg+C ab und beendet alle verknüpften Hintergrundprozesse sauber
|
|
trap 'echo -e "\n🛑 Beende alle J.A.R.V.I.S. Systeme..."; kill 0' EXIT
|
|
|
|
echo "🎙️ Starte Wake-Word-Engine im Hintergrund..."
|
|
python3 wakeword.py &
|
|
|
|
echo "💬 Starte Chat-Interface..."
|
|
python3 jarvis.py
|