- 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
19 lines
437 B
Bash
Executable File
19 lines
437 B
Bash
Executable File
#!/bin/bash
|
||
# ascii_zero.sh – Terminal-Fallback-Kunst
|
||
|
||
wort="$1"
|
||
if [ -z "$wort" ]; then
|
||
echo "🖋️ Bitte ein Wort angeben. Beispiel: ascii \"Crumbforest\""
|
||
exit 1
|
||
fi
|
||
|
||
if command -v figlet >/dev/null 2>&1; then
|
||
echo "🎨 Terminal-Schrift für \"$wort\":"
|
||
figlet -f slant "$wort"
|
||
else
|
||
echo "🪵 Fallback (kein figlet installiert):"
|
||
echo "========================"
|
||
echo " $wort"
|
||
echo "========================"
|
||
fi
|