#113355
labelwhore
Participant

Have you tried just commenting this section out? it seems like it may disable that message completely, but it’s a start.

# check for x/m key pressed to choose a screenmode (x included as it is useful on the picade)
clear
echo "Press a key (or joypad button 0) to configure launch options for emulator/port ($emulator). Errors will be logged to /tmp/runcommand.log"
IFS= read -s -t 1 -N 1 key </dev/tty
if [[ -n "$key" ]]; then
    get_all_modes
    main_menu
    dont_launch=$?
    clear
fi