diff --git a/airootfs/usr/local/bin/run-game b/airootfs/usr/local/bin/run-game new file mode 100644 index 0000000..0b814fa --- /dev/null +++ b/airootfs/usr/local/bin/run-game @@ -0,0 +1,12 @@ +#!/bin/sh + +# Check if at least one argument is provided +if [ $# -lt 1 ]; then + echo "Usage: $0 " + exit 1 +fi + +# Access the first argumen +gameiso=$1 + +exec ./home/Desktop/suyu.desktop $gameiso