From 2747d385e9b30a3acde90da49cd9c15993eb2c9d Mon Sep 17 00:00:00 2001 From: Rudis Muiznieks Date: Sun, 10 Oct 2021 13:03:08 -0500 Subject: [PATCH] added psx processing --- README.md | 2 ++ gen-playlish.sh | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/README.md b/README.md index 2f90934..39e321c 100644 --- a/README.md +++ b/README.md @@ -1 +1,3 @@ This is just a quick bash script I wrote to generate Lakka playlists from my ROM directories. Only supports specific systems that I care about, but could easily be extended to support more. May need some customization depending on your core preferences. + +It supports MAME 2003 Plus rom naming based on the included json database. diff --git a/gen-playlish.sh b/gen-playlish.sh index ee4528f..cfa0c93 100755 --- a/gen-playlish.sh +++ b/gen-playlish.sh @@ -88,6 +88,12 @@ case "$sys_type" in core_name="Sega - MS/GG/MD/CD (Genesis Plus GX)" db_name="Sega - Mega Drive - Genesis.lpl" ;; + 'psx') + rom_ext="cue" + core_path="/tmp/cores/pcsx_rearmed_libretro.so" + core_name="Sony - PlayStation (PCSX ReARMed)" + db_name="Sony - PlayStation.lpl" + ;; *) echo "Don't recognize system for roms in $sys_type directory..." exit 1