mirror of
https://github.com/tumillanino/miasma-os.git
synced 2026-04-11 07:15:31 +00:00
11 lines
328 B
Bash
Executable File
11 lines
328 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 io.github.ryubing.Ryujinx "$@"
|
|
else
|
|
# If no arguments are passed, just run the flatpak without any file
|
|
flatpak run io.github.ryubing.Ryujinx
|
|
fi
|