Initial commit after repository repair and requirements update

This commit is contained in:
2025-08-22 06:10:33 +01:00
commit ce4440bf6e
60 changed files with 5405 additions and 0 deletions

14
run_tkinter_debug.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
# Debugging launch script for the tkinter player application
# Activate the virtual environment
source venv/bin/activate
# Change to the tkinter app src directory
cd tkinter_app/src
# Run the main application with full error output
python main.py
# Deactivate virtual environment when done
deactivate