Skip to content

Instantly share code, notes, and snippets.

@kapcom01
Last active September 9, 2026 08:58
Show Gist options
  • Select an option

  • Save kapcom01/e2440dc2bc2f5b95132f794b7796565b to your computer and use it in GitHub Desktop.

Select an option

Save kapcom01/e2440dc2bc2f5b95132f794b7796565b to your computer and use it in GitHub Desktop.
umu-launcher in SteamOS

umu-launcher for SteamOS

Installation instructions:

  1. On a Steam Deck or Steam Machine, create Containerfile:
FROM archlinux AS build-stage

RUN pacman -Syu --noconfirm git make python3

WORKDIR /umu-launcher
RUN git clone --recurse-submodules https://github.com/Open-Wine-Components/umu-launcher .
RUN ./configure.sh --user-install
RUN make install

FROM scratch
COPY --from=build-stage /root/.local/bin /
  1. Then run:
podman build --output $HOME/.local/bin .

Thats it 😄

Now you can run umu-run

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment