
Store page
|
Game details
|
|---|---|
Library page
|
Game settings
|
Discord / Zulip / Game integrations / Developer Handbook
Anime Games Launcher is a fully community powered games launcher. It provides a packages manager and special lua scripts runtime which can be used by external contributors to add games into the launcher.
If you want to add a game support to this launcher - please start by reading The Anime Games Launcher Developer Handbook, then follow the useful links to read up-to-date documentation.
We're currently not planning to expand the distributions support since the launcher, while being functional, lacks community support for different games. We will work on wider distributions support once more games will be supported.
| Package | Distributions |
|---|---|
| Flatpak | Fedora Workstation, etc. |
| AUR | Arch Linux, CachyOS, Manjaro, EndeavourOS, etc. |
We provide official nix flake for installing the launcher:
{
inputs = {
# Add launcher flake as input
anime-games-launcher.url = "github:an-anime-team/anime-games-launcher";
};
outputs = { anime-games-launcher, ... }: {
nixosConfigurations.default = nixpkgs.lib.nixosSystem {
modules = [
# Add launcher's nixos module from the flake
anime-games-launcher.nixosModules.anime-games-launcher
# Add the launcher or anirun CLI
({ ... }: {
programs.anime-games-launcher = {
enable = true;
anirun.enable = true;
};
})
];
};
};
}
The whole project and all its components listed in this repo are licensed under GPL-3.0-or-later
$ claude mcp add anime-games-launcher \
-- python -m otcore.mcp_server <graph>