summarylogtreecommitdiffstats
path: root/bsnes
blob: 0177b95fb234e6962cf9dab726e61f6af499ccb1 (plain)
1
2
3
4
5
6
#!/bin/sh

# Prompt for profile
profile="$(zenity --list --radiolist --title 'Please select a profile' --column '' --column '' FALSE 'accuracy' TRUE 'compatibility' FALSE 'performance')"
# Launch selected profile
[[ -n $profile ]] && exec bsnes-$profile "$@"