We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The initial script should offer the possibility to autostart each time you turn on MiSTer.
Maybe you can use /etc/init.d/ dir.
The text was updated successfully, but these errors were encountered:
This one should be easy, not a priority right now, though. I'll plan to add it after game support.
Sorry, something went wrong.
Here's what I did:
create the file /etc/init.d/S99webmenu with the following contents:
#!/bin/sh [ -f /media/fat/Scripts/webmenu.sh ] || exit 0 start() { printf "Starting WebMenu service: " /media/fat/Scripts/webmenu.sh [ $? = 0 ] && echo "OK" || echo "FAIL" } stop() { printf "Shutting down WebMenu service: " kill -9 `pidof WebMenu` [ $? = 0 ] && echo "OK" || echo "FAIL" } restart() { stop start } case "$1" in start) start ;; stop) stop ;; restart) restart ;; *) echo "Usage: $0 {start|stop|restart}" exit 1 esac exit $?
nilp0inter
No branches or pull requests
The initial script should offer the possibility to autostart each time you turn on MiSTer.
Maybe you can use /etc/init.d/ dir.
The text was updated successfully, but these errors were encountered: