enjoy for RetroArch

Play any game ROM with associated emulator in RetroArch on Linux

enjoy

Introduction

enjoy is a wrapper around "RetroArch" on Linux to help running emulator cores on the commandline. A user configuration file can be setup, including rules and core aliases pointing to file extensions and emulator paths. Each time the program runs, it will lookup these settings to determine the correct core for each given extension. It can be even used to launch games directly within your favorite file manager by double clicking the ROM file, if file extension is registered to open enjoy as the default program.

Use option -h for short help and --help for detailed help.

Example

```bash $ enjoy '~/roms/snes/Super Mario World (U) [!].smc'

$ ls -1 $(readlink -f ~/Emulatoren/games/gb)/* | enjoy --filter 'mario' -xWn

$ find . -maxdepth 2 | fzf | enjoy -xWn ```

Depending on your shell, you might need to escape the ! in example. When multiple ROMs are given, then the first one will be loaded. There are many options available, including filtering such a game list or output the entire command used to run RetroArch.

Features

Quick Start

Install and setup RetroArch first, if not done already: RetroArch

Install enjoy, if you have cargo installed ...

... or get binary manually from Github

Configure the user settings

Enjoy.

User Configuration File

Read a more detailed description about the file in the Wiki: User Configuration File

The default configuration file at "~/.config/enjoy/default.ini" will be automatically loaded up each time enjoy is executed. Example:

```ini [options] retroarch = /usr/bin/retroarch

[cores] snes = snes9x gb gbc = sameboy_libretro.so

[.smc .sfc] core = snes

[.gb] core = gb

[/home/user/roms/psx*] libretro = mednafenpsxhw ```

There are 4 different categories of sections.

Known Bugs, Limitations and Quirks