mirror of
https://github.com/linuxserver/docker-rpcs3.git
synced 2026-03-16 00:07:07 +08:00
14 lines
315 B
Bash
14 lines
315 B
Bash
#!/bin/bash
|
|
|
|
# Copy controller profile on first run
|
|
if [ ! -f "${HOME}/.config/rpcs3/input_configs/global/Default.yml" ]; then
|
|
mkdir -p "${HOME}/.config/rpcs3/input_configs/global/"
|
|
cp \
|
|
/defaults/Default.yml \
|
|
"${HOME}/.config/rpcs3/input_configs/global/Default.yml"
|
|
fi
|
|
|
|
|
|
# Run rpcs3
|
|
/opt/rpcs3/AppRun
|