You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
340 B
14 lines
340 B
#!/bin/zsh |
|
# Use "debug_gamelaunch %command%" in Steam SET LAUNCH OPTIONS |
|
|
|
GAME_ARGV=("$@") |
|
GAME_PATH="$1" |
|
shift |
|
GAME_ARGS=("$@") |
|
|
|
echo -e "\033[33mGame path: $GAME_PATH\nGame arguments: $GAME_ARGS\nSee variables \$GAME_ARGV \$GAME_PATH \$GAME_ARGS\033[0m" |
|
|
|
export GAME_ARGV GAME_PATH GAME_ARGS |
|
export PROMPT="steam:%d> " |
|
exec /bin/zsh -i |
|
|
|
|