import subprocess
import sys
import os

def run_triggerbox():
    """Run the Triggerbox script."""
    triggerbox_path = os.path.join(os.path.dirname(__file__), "Triggerbox.py")
    subprocess.run([sys.executable, triggerbox_path])

if __name__ == "__main__":
    run_triggerbox()