summarylogtreecommitdiffstats
path: root/bsnes
blob: 20fb5702142108e9717f2f7bbfdb64450d92e21a (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

# Check for profiles and prompt user with a GUI
[ -e /usr/bin/bsnes-accuracy ] && tag1=accuracy
[ -e /usr/bin/bsnes-compatibility ] && tag2=compatibility
[ -e /usr/bin/bsnes-performance ] && tag3=performance
profile="$(Xdialog --stdout --no-tags --title "bsnes-classic" --radiolist "Choose a profile" 0 0 0 "$tag1" "Accuracy" off "$tag2" "Compatibility" off "$tag3" "Performance" off)"

# Launch selected profile
exec bsnes-$profile "$@"