Created
July 20, 2026 22:41
-
-
Save mattsoldo/b315d42035fa8f2f7e39c2bb6c25686b to your computer and use it in GitHub Desktop.
Dolphin Kiosk
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo raspi-config nonint do_boot_behaviour B4 | |
| mkdir -p "$HOME/.config/autostart" | |
| cat > "$HOME/.config/autostart/dolphin.desktop" <<'EOF' | |
| [Desktop Entry] | |
| Type=Application | |
| Name=Dolphin Emulator | |
| Comment=Launch Dolphin when the Wii Slate starts | |
| Exec=/bin/sh -lc "until command -v flatpak >/dev/null 2>&1 && flatpak info --system org.DolphinEmu.dolphin-emu >/dev/null 2>&1; do sleep 5; done; exec flatpak run org.DolphinEmu.dolphin-emu" | |
| Terminal=false | |
| X-GNOME-Autostart-enabled=true | |
| EOF | |
| sudo reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment