{"id":35205602,"url":"https://github.com/sdaqo/agent-launcher","last_synced_at":"2026-01-13T21:43:37.543Z","repository":{"id":331275871,"uuid":"1124642881","full_name":"sdaqo/agent-launcher","owner":"sdaqo","description":"Automatically attaches agent to Steam Games under Linux","archived":false,"fork":false,"pushed_at":"2026-01-01T00:02:18.000Z","size":41,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-05T09:42:58.708Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sdaqo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-29T11:11:28.000Z","updated_at":"2026-01-01T09:52:51.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/sdaqo/agent-launcher","commit_stats":null,"previous_names":["sdaqo/agent-launcher"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/sdaqo/agent-launcher","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdaqo%2Fagent-launcher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdaqo%2Fagent-launcher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdaqo%2Fagent-launcher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdaqo%2Fagent-launcher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sdaqo","download_url":"https://codeload.github.com/sdaqo/agent-launcher/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdaqo%2Fagent-launcher/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28401044,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-12-29T13:45:24.526Z","updated_at":"2026-01-13T21:43:37.538Z","avatar_url":"https://github.com/sdaqo.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# agent-launcher\nAutomatically download, and attach [Agent](https://github.com/0xDC00/agent) to Steam games on Linux Systems.\n\nThis is a private public repo, I will not be answering issues accepting prs etc. You will have to edit the script on your own. This is very specific to my own configuration, please adjust accordingly.\n\n```\nusage: [ENV VARS...] agent-launcher.sh %command%\n\nLaunches agent + game together + various ulility stuff\n\nDo not end Paths with extra /\n\nEnvironment Variables:\nA_PATH: Path where agent.exe lies. (Default: $GAME_DIR)\nA_SCRIPTS_PATH: Path where agent scrips lie. (Default: $GAME_DIR/data/scripts)\nA_SCRIPT: Agent script to use (file name) in the A_SCRIPTS_PATH (Default: none, required)\nA_DELAY: Delay after which agent hooks the game (ms). (Default: 5000)\nA_ONLY: Launch agent without game. (Default: 0)\nA_SKIP_HELP: Do not show this help message. (Default: 0)\nA_HDR: Enable HDR compat under wayland. (Default: 0)\nA_GAMESCOPE: Use gamescope to launch the game. (Default: 0)\nA_GAMESCOPE_OPTS: Specify custom gamescope opts, e.g. \"-W 3840 -H 2160\". (Default: \"\")\nA_DOWNLOAD: Download agent if not in location. (Default: 1)\nA_DL_URL: Agent download url. (Default: https://github.com/0xDC00/agent/releases/latest/download/agent-v0.1.4-win32-x64.zip)\nA_SCRIPTS_DOWNLOAD: Download agent scripts. (Default: 1)\nA_SCRIPTS_DL_URL: Agent scripts download url: (Default: https://github.com/0xDC00/scripts/archive/refs/heads/main.zip)\nA_PORT: Agent websocket port. (Default: 6677)\nA_IP: Agent websocket host. (Default: 0.0.0.0)\n```\n\n## Nix\n\nUse this to add it to your nix config:\n\n```nix\n{ pkgs, lib, ... }:\nlet\n  agent-launcher = pkgs.stdenv.mkDerivation rec {\n    version = \"x.x\"; # Replace with current release version\n    name = \"agent-launcher\";\n    src = pkgs.fetchFromGitHub {\n      owner = \"sdaqo\";\n      repo = \"agent-launcher\";\n      rev = \"v${version}\";\n      hash = \"sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=\"; # Replace with correct hash\n    };\n\n    nativeBuildInputs = [ pkgs.makeWrapper ];\n    runtimeInputs = with pkgs; [\n      wget\n      bash\n      unzip\n    ];\n\n    installPhase = ''\n      runHook preInstall\n\n      install -Dm755 agent-launcher.sh $out/bin/agent-launcher.sh\n\n      wrapProgram $out/bin/agent-launcher.sh \\\n        --prefix PATH : ${lib.makeBinPath runtimeInputs}\n\n      runHook postInstall\n    '';\n  };\nin \n{\n  programs.steam = {\n    enable = true;\n    extraPackages = with pkgs; [\n      agent-launcher # Add it to extra packages\n    ];\n  };\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsdaqo%2Fagent-launcher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsdaqo%2Fagent-launcher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsdaqo%2Fagent-launcher/lists"}