diff --git a/lib/common.sh b/lib/common.sh index df46884..501bc34 100644 --- a/lib/common.sh +++ b/lib/common.sh @@ -35,19 +35,6 @@ clear_screen() { printf '\033[2J\033[H' } -show_header() { - local title="$1" - local subtitle="$2" - - clear_screen - echo -e "${BLUE}$title${NC}" - echo "=================================================" - if [[ -n "$subtitle" ]]; then - echo -e "${PURPLE}$subtitle${NC}" - echo "" - fi -} - # Keyboard input handling (simple and robust) read_key() { local key rest diff --git a/mole b/mole index bafcce2..2be309f 100755 --- a/mole +++ b/mole @@ -47,11 +47,8 @@ show_main_menu() { local redraw_full="${2:-true}" if [[ "$redraw_full" == "true" ]]; then - show_header "🧹Mole - Dig deep to clean your mac." - echo "🍎 Detected: $(detect_architecture) | 💾 Free space: $(get_free_space)" - echo "" - echo "What would you like to do?" echo "" + echo "❤️ What do you want Mole to do for you?" fi # Save cursor position before printing menu items