#!/bin/bash

echo "PowerPoint Formatting Fix Tool"
echo "============================="

# Check if Python is installed
if ! command -v python3 &> /dev/null; then
    echo "Error: Python 3 is not installed or not in PATH"
    echo "Please install Python 3 from https://python.org"
    exit 1
fi

# Install required package
echo "Installing required packages..."
pip3 install python-pptx

# Run the fix script
echo ""
echo "Running PowerPoint formatting fix..."
python3 advanced_powerpoint_fixer.py "25 05 12 Kunstbuch Lebenswerk Nina Nolte, Buch, gestrafft copia 2.pptx"

echo ""
echo "Done! Check the output file in the same directory." 