smithers
Participant
Post count: 270

Perhaps a Linux script incorporating the RANDOM command would do it? save it as a random.sh file in your rom folder for each system, add ‘.sh .SH’ as a file extension type to your ES_Systems.cfg file and reference it accordingly in gamelist.xml.

I don’t think I would be able to create such a script mind you! I’m only thinking its possible after finding this script to set a random wallpaper:

#!/bin/bash
# get images
files=(/nas/download/share/fun/images/wallpapers/*.png)
# find out random one
n=${#files[@]}
wallpaper=”${files[RANDOM % n]}”