gestito il riavvio automatico e la grafica windows

This commit is contained in:
tommal
2025-12-02 16:05:45 +01:00
parent 6388fc9e46
commit 67c4783b8c
697 changed files with 5568 additions and 91 deletions

View File

@@ -14,5 +14,16 @@ done
# Wait a bit more for everything to stabilize
sleep 2
# Start Fiscality application as abc user
exec /app/Fiscality/Fiscality -NoCheck -Dosgi.locking=none
export GTK2_RC_FILES=/usr/share/themes/Windows-10/gtk-2.0/gtkrc
export GTK_THEME=Windows-10
sleep 1
# Infinite restart loop
while true; do
echo "$(date): Starting Fiscality..."
/app/Fiscality/Fiscality -NoCheck -Dosgi.locking=none || true
echo "$(date): Fiscality exited. Restarting..."
sleep 2
done
EOF