Skip to content

Commit f1b6d92

Browse files
committed
change SNAP_USER_DATA to SNAP_USER_COMMON
1 parent 68009fe commit f1b6d92

File tree

2 files changed

+27
-13
lines changed

2 files changed

+27
-13
lines changed

README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ You will need to use the Online Updater to install cores.
1313
## Daemon mode
1414

1515
[snap.retroarch.daemon.service](https://snapcraft.io/docs/services-and-daemons#defining-a-daemon) systemd unit will automatically enabled and started after installation on Ubuntu Core. On other versions of GNU/Linux to activate daemon run as root the following command:
16-
> WARNING! For most desktop distributions this is not needed
1716

18-
```console
19-
$ snap set ubuntu-frame daemon=true && snap start --enable retroarch.daemon
17+
> [!WARNING]
18+
> For most desktop distributions this isn't needed
19+
20+
```shell
21+
snap set ubuntu-frame daemon=true && snap start --enable retroarch.daemon
2022
```

scripts/bin/retroarch.wrapper

+22-10
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,18 @@
22

33
set -e
44

5-
MAINCONFIG="$SNAP_USER_DATA/.config/retroarch/retroarch.cfg"
5+
if [ ! -d $SNAP_USER_DATA/.config/retroarch ];
6+
then
7+
[ -n $XDG_CONFIG_HOME ] && export XDG_CONFIG_HOME=${XDG_CONFIG_HOME/$HOME/$SNAP_USER_COMMON}
8+
export HOME=$SNAP_USER_COMMON
9+
fi
10+
11+
[ -n $XDG_CONFIG_HOME ] && SNAP_LIBRETRO_DIRECTORY="${XDG_CONFIG_HOME}/retroarch" || SNAP_LIBRETRO_DIRECTORY="${HOME}/.config/retroarch"
12+
MAINCONFIG="${SNAP_LIBRETRO_DIRECTORY}/retroarch.cfg"
613
FILESETS=('assets' 'autoconfig' 'cheats' 'cores' 'database' 'filters' 'overlay' 'shaders')
714

8-
_notify() {
15+
retro_notify()
16+
{
917
local msg=$1
1018
local timeout=2000
1119
local icon="$SNAP/.config/assets/xmb/monochrome/png/retroarch.png"
@@ -14,28 +22,32 @@ _notify() {
1422
}
1523

1624
# Notify user that we're working so they don't think anything is broken
17-
[ ! -d "$SNAP_USER_DATA/.config/retroarch" ] && _notify "Preparing the environment..."
25+
[ ! -d "$SNAP_LIBRETRO_DIRECTORY" ] && retro_notify "Preparing the environment..."
1826

1927
# Notify the user that it might take a while to copy everything
20-
[ ! -d "$SNAP_USER_DATA/.config/retroarch" ] && _notify "Copying necessary files (this could take a minute)..."
28+
[ ! -d "$SNAP_LIBRETRO_DIRECTORY" ] && retro_notify "Copying necessary files (this could take a minute)..."
2129

2230
# Create RetroArch user configuration directory if doesn't exist
23-
[ ! -d "$SNAP_USER_DATA/.config" ] && mkdir "$SNAP_USER_DATA/.config"
24-
[ ! -d "$SNAP_USER_DATA/.config/retroarch" ] && mkdir "$SNAP_USER_DATA/.config/retroarch"
31+
[ ! -d "${SNAP_LIBRETRO_DIRECTORY%/retroarch}" ] && mkdir "${SNAP_LIBRETRO_DIRECTORY%/retroarch}"
32+
[ ! -d "$SNAP_LIBRETRO_DIRECTORY" ] && mkdir "$SNAP_LIBRETRO_DIRECTORY"
2533

2634
# Copy filesets if doesn't exist
2735
for fileset in ${FILESETS[@]};
2836
do
29-
if [ ! -d "$SNAP_USER_DATA/.config/retroarch/$fileset" ];
37+
if [ ! -d "$SNAP_LIBRETRO_DIRECTORY/$fileset" ];
3038
then
31-
cp -R "$SNAP/.config/$fileset" "$SNAP_USER_DATA/.config/retroarch"
39+
cp -R "$SNAP/.config/$fileset" "$SNAP_LIBRETRO_DIRECTORY"
3240
fi
3341
done
3442

35-
[ ! -f "$SNAP_USER_DATA/.config/retroarch/retroarch.cfg" ] && _notify "Done!"
43+
[ ! -f "$SNAP_LIBRETRO_DIRECTORY/retroarch.cfg" ] && retro_notify "Done!"
3644

3745
# If the config file doesn't exist, create it and point the browser directory outside of the snap package
38-
[ ! -f "$MAINCONFIG" ] && echo "rgui_browser_directory = $SNAP_REAL_HOME" >> "$MAINCONFIG" && echo "input_joypad_driver = sdl2" >> "$MAINCONFIG"
46+
if [ ! -f "$MAINCONFIG" ]
47+
then
48+
echo "rgui_browser_directory = \"$SNAP_REAL_HOME\"" >> "$MAINCONFIG"
49+
echo "input_joypad_driver = \"sdl2\"" >> "$MAINCONFIG"
50+
fi
3951

4052
# Make PulseAudio socket available inside the snap-specific $XDG_RUNTIME_DIR
4153
if [ -n "$XDG_RUNTIME_DIR" ] && [ -S "$XDG_RUNTIME_DIR/../pulse/native" ];

0 commit comments

Comments
 (0)