Skip to content

Instantly share code, notes, and snippets.

@mattsoldo
Created July 20, 2026 22:41
Show Gist options
  • Select an option

  • Save mattsoldo/b315d42035fa8f2f7e39c2bb6c25686b to your computer and use it in GitHub Desktop.

Select an option

Save mattsoldo/b315d42035fa8f2f7e39c2bb6c25686b to your computer and use it in GitHub Desktop.
Dolphin Kiosk
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