Update RPi scripts with new ASCII art banner and simpler headers

- Add stegosaurus-themed ASCII art with diamond plates and halftone dots
- Replace box-drawing characters with simple dashes for headers
- Consistent styling across first-boot-wizard.sh, setup.sh, sanitize-for-image.sh

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Aaron D. Lee
2026-01-03 21:13:38 -05:00
parent b60880c8b3
commit cccb40dc3a
3 changed files with 59 additions and 66 deletions

View File

@@ -35,24 +35,22 @@ if [ "$EUID" -ne 0 ]; then
exit 1
fi
BOLD='\033[1m'
if [ "$SOFT_RESET" = true ]; then
echo -e "${CYAN}"
echo "+-----------------------------------------------------------------+"
echo "| Soft Reset (Factory Defaults) |"
echo "| |"
echo "| WiFi credentials will be KEPT for continued testing. |"
echo "| Everything else will be reset to first-boot state. |"
echo "+-----------------------------------------------------------------+"
echo -e "${NC}"
echo ""
echo -e "${BOLD}Soft Reset (Factory Defaults)${NC}"
echo -e "${CYAN}-------------------------------------------------------${NC}"
echo " WiFi credentials will be KEPT for continued testing."
echo " Everything else will be reset to first-boot state."
echo ""
else
echo -e "${YELLOW}"
echo "+-----------------------------------------------------------------+"
echo "| Sanitize Pi for Image Distribution |"
echo "| |"
echo "| This will remove ALL personal data for imaging. |"
echo "| The system will shut down when complete. |"
echo "+-----------------------------------------------------------------+"
echo -e "${NC}"
echo ""
echo -e "${BOLD}Sanitize Pi for Image Distribution${NC}"
echo -e "${YELLOW}-------------------------------------------------------${NC}"
echo " This will remove ALL personal data for imaging."
echo " The system will shut down when complete."
echo ""
fi
read -p "Continue? This cannot be undone! [y/N] " -n 1 -r
@@ -327,15 +325,13 @@ fi
# =============================================================================
echo ""
if [ $VALIDATION_ERRORS -eq 0 ]; then
echo -e "${GREEN}+-----------------------------------------------------------------+${NC}"
echo -e "${GREEN}| Sanitization Complete! |${NC}"
echo -e "${GREEN}| All validation checks passed. |${NC}"
echo -e "${GREEN}+-----------------------------------------------------------------+${NC}"
echo -e "${BOLD}Sanitization Complete!${NC}"
echo -e "${GREEN}-------------------------------------------------------${NC}"
echo -e " ${GREEN}All validation checks passed.${NC}"
else
echo -e "${RED}+-----------------------------------------------------------------+${NC}"
echo -e "${RED}| Sanitization Complete with Errors |${NC}"
echo -e "${RED}| $VALIDATION_ERRORS validation check(s) failed |${NC}"
echo -e "${RED}+-----------------------------------------------------------------+${NC}"
echo -e "${BOLD}Sanitization Complete with Errors${NC}"
echo -e "${RED}-------------------------------------------------------${NC}"
echo -e " ${RED}$VALIDATION_ERRORS validation check(s) failed${NC}"
fi
echo ""