summarylogtreecommitdiffstats
path: root/bsnes
diff options
context:
space:
mode:
Diffstat (limited to 'bsnes')
-rw-r--r--bsnes9
1 files changed, 9 insertions, 0 deletions
diff --git a/bsnes b/bsnes
new file mode 100644
index 000000000000..226f9d04c5df
--- /dev/null
+++ b/bsnes
@@ -0,0 +1,9 @@
+#!/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
+profile="$(Xdialog --stdout --no-tags --title "bsnes-plus" --radiolist "Choose a profile" 0 0 "$tag1" "Accuracy" off "$tag2" "Compatibility" off)"
+
+# Launch selected profile
+exec bsnes-$profile "$@" \ No newline at end of file