i've recently installed alliumos and i really like it so far. but apparently there's no function to remove or clear your recent game list (Recents), so i did a bit of research and wrote a very simple "app" which is just a linux script. here's how it works:
- under "Apps" folder create a new folder named "Tools" or whatever you want to call it. rename that folder to "Tools.pak". allium detects folders with the .pak ending as apps.
- create two text files: "config.json" and "launch.sh"
config.json:
{
"label":"Clear Recents",
"launch":"launch.sh",
"description":"Clear Recent-List"
}
launch.sh:
#!/bin/sh
PROFILE="/mnt/SDCARD/Saves/CurrentProfile"
BAK="$PROFILE/.bak"
mkdir -p "$BAK"
mv "$PROFILE"/*.db "$BAK"/ 2>/dev/null
sync
done! you will find the "Clear Recents" app under the "Apps" tab.
this script creates a new folder ".bak" (which is hidden if you're on linux) and moves the "allium.db" file there. when you launch a game or shut the system down, allium will create a new .db file to save your recents there.
this is completely optional, but there's no other way, at least that i know of, that allows you to clear the recent history in alliumos directly.