Files
crumbmissions/crumbmission/vegeta.sh
Branko May Trinkwald 2915828adf Add complete Crumbforest mission system
- Interactive mission selector with metadata-driven design
- 5 educational missions (basics + advanced)
- AI assistant roles (Deepbit, Bugsy, Schnippsi, Tobi)
- SnakeCam gesture recognition system
- Token tracking utilities
- CLAUDE.md documentation
- .gitignore for logs and secrets
2025-12-21 01:16:48 +01:00

29 lines
862 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
echo "🧂🌿 Vegeta spricht:"
echo ""
echo "Willkommen im Kräutergarten der Prozesse ..."
echo "Wähle eine Beobachtung:"
echo ""
echo "1. 🌱 Top der Prozesse"
echo "2. 🌿 Festplattenplatz prüfen"
echo "3. 🌞 Wie lange lebt der Wald schon?"
echo "4. 🌐 Netzwerkverbindungen anschauen"
echo "5. 🔥 Temperatur im Wurzelkern"
echo "6. 📜 Die letzten Waldzeichen"
echo ""
read -p "Wähle 16: " choice
# Absoluter Pfad zur Vegeta-Wurzel
VEGETA_PATH="/usr/local/bin/crumbmission/vegeta"
case $choice in
1) bash "$VEGETA_PATH/vegeta_top.sh" ;;
2) bash "$VEGETA_PATH/vegeta_disk.sh" ;;
3) bash "$VEGETA_PATH/vegeta_uptime.sh" ;;
4) bash "$VEGETA_PATH/vegeta_net.sh" ;;
5) bash "$VEGETA_PATH/vegeta_temp.sh" ;;
6) bash "$VEGETA_PATH/vegeta_watchlog.sh" ;;
*) echo "🌪️ Huch das war kein gültiger Krümel!" ;;
esac