From 989769e5e85ac91136a7fc67629f1be0ba3c4877 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Mon, 29 Sep 2025 19:07:35 +0200 Subject: [PATCH] Update AppRun --- AppImage/scripts/AppRun | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AppImage/scripts/AppRun b/AppImage/scripts/AppRun index 6e6d01d..7399446 100644 --- a/AppImage/scripts/AppRun +++ b/AppImage/scripts/AppRun @@ -27,7 +27,7 @@ find "${APPDIR}" -name "index.html" -type f || echo "[v0] No index.html found" # Check for translation argument if [[ "$1" == "--translate" ]]; then echo "🌐 Starting ProxMenux Translation Service..." - exec python3 "${APPDIR}/scripts/translator.py" "${@:2}" + exec python3 "${APPDIR}/usr/bin/translate_cli.py" "${@:2}" else echo "🚀 Starting ProxMenux Monitor Dashboard..." echo "📊 Dashboard will be available at: http://localhost:8008" @@ -37,5 +37,5 @@ else echo "" # Start the Flask server - exec python3 "${APPDIR}/scripts/flask_server.py" + exec python3 "${APPDIR}/usr/bin/flask_server.py" fi