2022-02-05 14:23:32 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
# Copyright (C) 2020-present Shanti Gilbert (https://github.com/shantigilbert)
|
2023-10-23 22:46:49 +00:00
|
|
|
# Copyright (C) 2023-present - The JELOS Project (https://github.com/JustEnoughLinuxOS) (https://github.com/fewtarius)
|
2022-02-05 14:23:32 +00:00
|
|
|
|
|
|
|
case "${1}" in
|
|
|
|
"retroarch")
|
|
|
|
rm -f /storage/.config/retroarch/retroarch.cfg
|
|
|
|
cp -rf /usr/config/retroarch/retroarch.cfg /storage/.config/retroarch/retroarch.cfg
|
|
|
|
;;
|
|
|
|
esac
|