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
| <?xml version="1.0"?> | |
| <!-- This is the ES-DE find rules configuration file for macOS --> | |
| <!-- Aug 21, 2026 (baseline: Feb 10, 2025) | |
| - searches /Applications/#emu (help reduce clutter in /Applications) | |
| - support for custom `emulatorLauncher` to bridge ES-DE gaps with Batocera ES | |
| - added a wide variety of emulators ported to macOS | |
| - support for launching Steam games natively, thru Whisky, and prelim support for Sikarugir | |
| - NOTE: assumes /userdata is a valid path (mimics Batocera Linux dir structure) | |
| --> |
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 | |
| # August 16, 2026 (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 root search path (NOTE: need to tailor below) |
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() |