mirror of
https://github.com/FunKey-Project/FunKey-OS.git
synced 2026-01-04 02:39:02 +01:00
11 lines
260 B
Bash
Executable File
11 lines
260 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cp /usr/games/mednafen-09x.cfg ${MEDNAFEN_HOME}/
|
|
|
|
# Launch the process in background, record the PID into a file, wait
|
|
# for the process to terminate and erase the recorded PID
|
|
mednafen -fs 1 -lynx.stretch full "$1"&
|
|
record_pid $!
|
|
wait $!
|
|
erase_pid
|