updated to tkinter

This commit is contained in:
2025-08-05 16:51:15 +03:00
parent 93c0637bca
commit 8293111e09
47 changed files with 2118 additions and 1077 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