Lutris

Lutris #

Moonlight | Wolf
Lutris screenshot

An open-source gaming platform for Linux that allows you to install and manage games from various sources, including Steam, GOG, and more. It simplifies the process of running games on Linux.

Gamepad-UI #

Moonlight | Wolf
lutris-gamepad-ui

By default Wolf’s Lutris image uses lutris-gamepad-ui, a gamepad friendly interface with access to Lutris many settings.

The classic Lutris window can be opened from the Gamepad UI menu. The Gamepad UI can be disabled by setting the environment variable WOLF_LUTRIS_GAMEPAD_UI_ENABLE=0 in the config.toml file.

Default config

This is the default configuration block that will be used in Wolf, you can override it by editing the config.toml.

Click to expand
[[apps]]
title = "Lutris"
icon_png_path = "https://games-on-whales.github.io/wildlife/apps/lutris/assets/icon.png"
start_virtual_compositor = true

[apps.runner]
type = "docker"
name = "WolfLutris"
image = "ghcr.io/games-on-whales/lutris:edge"
mounts = ["lutris:/var/lutris/:rw"]
env = [
    'WOLF_LUTRIS_GAMEPAD_UI_ENABLE=1',
    "GOW_REQUIRED_DEVICES=/dev/input/event* /dev/dri/* /dev/nvidia* /var/lutris/",
]
devices = []
ports = []
base_create_json = """
{
  "HostConfig": {
    "IpcMode": "host",
    "CapAdd": ["SYS_ADMIN", "SYS_NICE", "SYS_PTRACE", "NET_RAW", "MKNOD", "NET_ADMIN"],
    "SecurityOpt": ["seccomp=unconfined", "apparmor=unconfined"],
    "Ulimits": [{"Name":"nofile", "Hard":524288, "Soft":524288}],
    "Privileged": false,
    "DeviceCgroupRules": ["c 13:* rmw", "c 244:* rmw"]
  }
}
\
"""