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

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