71b4a5cbb7
* Ensure userconfig setup runs after automount. * Automount now places a readme in /storage/roms with instructions to create game directories. * Pico 8 autostart script no longer creates the directory.
9 lines
209 B
Bash
Executable file
9 lines
209 B
Bash
Executable file
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2023 JELOS (https://github.com/JustEnoughLinuxOS)
|
|
|
|
PICO_DIR="/storage/roms/pico-8"
|
|
if [ -d "${PICO_DIR}" ]
|
|
then
|
|
touch "${PICO_DIR}/Splore.png"
|
|
fi
|