Files
signage-player/run_tkinter_debug.sh
2025-08-05 16:51:15 +03:00

14 lines
316 B
Bash
Executable File

#!/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