Skip to main content
Version: v2.8.0

ChimeraOS

Beta

ChimeraOS support is currently in beta. Some features may not work as expected.

Zaparoo Core on ChimeraOS supports launching Steam games, GOG games via the Chimera web app, and shell scripts. Release builds are available for both AMD64 and ARM64 architectures.

File Paths

ItemPath
Config file~/.config/zaparoo/config.toml
Data directory~/.local/share/zaparoo
Log file/tmp/<session_id>-zaparoo/core.log
Mappings directory~/.local/share/zaparoo/mappings

Where ~ is the home directory of the gamer user.

Install

Download Zaparoo Core for ChimeraOS from the Downloads page, unzip it and copy the zaparoo file to your home directory.

Access the terminal with Ctrl+Alt+F2 (default credentials: gamer / gamer).

cd $HOME
./zaparoo -install
systemctl --user enable zaparoo.service
systemctl --user start zaparoo.service

To uninstall:

./zaparoo -uninstall

Readers

All readers are supported.

Launchers

LauncherSystemsNotes
SteamPCGames and non-Steam shortcuts
ChimeraGOGPCGOG games from Chimera web app
Shell ScriptsAnyCustom .sh file execution

Steam

Launches games from your Steam library. Both official Steam games and non-Steam shortcuts added to your library are detected.

Games are indexed from:

  • ~/.steam/steam/steamapps/
  • ~/.local/share/Steam/

To manually launch a Steam game, write steam://<app_id> to a token.

ChimeraGOG

Zaparoo automatically indexes GOG games installed through the Chimera web app.

Games are indexed from:

  • ~/.local/share/chimera/content/gog/

Games are launched using the gog:// scheme.

Shell Scripts

Execute arbitrary shell scripts. Requires explicit allow list configuration for security.

config.toml
[launchers]
allow_file = [
"^/home/gamer/scripts/.*\\.sh$"
]