#!/bin/bash # This should be wherever your GBA images are cd /media/sdb2/emulation/ while /bin/true; do GAME=$(zenity --title "Select a game or Cancel to exit" --file-selection) if [ -n "$GAME" ]; then mednafen "$GAME"; else exit fi done