mirror of
https://github.com/linuxserver/docker-dolphin.git
synced 2026-02-20 02:29:52 +08:00
10 lines
259 B
Bash
10 lines
259 B
Bash
#!/bin/bash
|
|
|
|
# Copy default controller config
|
|
if [ ! -f "${HOME}/.config/dolphin-emu/GCPadNew.ini" ]; then
|
|
mkdir -p "${HOME}/.config/dolphin-emu/"
|
|
cp /defaults/GCPadNew.ini "${HOME}/.config/dolphin-emu/"
|
|
fi
|
|
|
|
xterm -e /usr/games/dolphin-emu ${DOLPHIN_CLI}
|