mirror of
https://git.suyu.dev/suyu/suyu-os.git
synced 2025-12-21 21:26:12 +01:00
could be useful later btw i don't know the roadmap exactly so you can explain it to me later so i can help :D
12 lines
215 B
Bash
12 lines
215 B
Bash
#!/bin/sh
|
|
|
|
# Check if at least one argument is provided
|
|
if [ $# -lt 1 ]; then
|
|
echo "Usage: $0 </path/to/game.nsp>"
|
|
exit 1
|
|
fi
|
|
|
|
# Access the first argumen
|
|
gameiso=$1
|
|
|
|
exec ./home/Desktop/suyu.desktop $gameiso
|