Files
miasma-os/docs/solarpowered-main/files/shared/usr/bin/melonDS
2026-04-09 16:33:56 +10:00

11 lines
318 B
Bash
Executable File

#!/bin/bash
# Check if any arguments were passed to the script
if [ "$#" -gt 0 ]; then
# If arguments are passed, include them in the flatpak run command
flatpak run net.kuribo64.melonDS "$@"
else
# If no arguments are passed, just run the flatpak without any file
flatpak run net.kuribo64.melonDS
fi