This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/opt/homebrew/bin/python3 | |
| # Dec 26, 2025 (created: Feb 5, 2025) | |
| # | |
| # emulatorLauncher helper script used to | |
| # 1) make it easy to launch roms from CLI (Terminal.app) | |
| # 2) implement .squashfs support (compatible with Batocera Linux) | |
| # 3) ease integration with ES-DE (esp in macOS) | |
| # 4) implement rom search |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; | |
| ;; Supermodel Configuration File | |
| ;; Default settings. | |
| ;; | |
| ;; 3/26/2025 (udance4ever): update to default setting so DualSense works in macOS | |
| ;; tested with 2020 M1 MacBookPro 16GB 1TB running macOS Sequoia 15.3.2 | |
| ;; | |
| ;; believe RetroBat in-line comments refer to these bindings that work for DualSense in Windows: | |
| ;; https://wiki.retrobat.org/systems-and-emulators/supported-game-systems/arcade/sega/sega-model-3 | |
| ;; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import argparse | |
| import os | |
| import atexit | |
| import platform | |
| import re | |
| # boolean: https://stackoverflow.com/a/52403318/9983389 | |
| parser = argparse.ArgumentParser() |