{"id":27091703,"url":"https://github.com/dgame/dgame-system","last_synced_at":"2026-02-15T07:33:42.230Z","repository":{"id":38299083,"uuid":"229630986","full_name":"Dgame/dgame-system","owner":"Dgame","description":null,"archived":false,"fork":false,"pushed_at":"2025-02-25T21:01:26.000Z","size":442,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-06T07:53:23.865Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Dgame.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2019-12-22T21:05:53.000Z","updated_at":"2025-02-25T21:01:29.000Z","dependencies_parsed_at":"2025-02-25T21:28:02.314Z","dependency_job_id":null,"html_url":"https://github.com/Dgame/dgame-system","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Dgame/dgame-system","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dgame%2Fdgame-system","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dgame%2Fdgame-system/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dgame%2Fdgame-system/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dgame%2Fdgame-system/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Dgame","download_url":"https://codeload.github.com/Dgame/dgame-system/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dgame%2Fdgame-system/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29472880,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T06:58:05.414Z","status":"ssl_error","status_checked_at":"2026-02-15T06:58:05.085Z","response_time":118,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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-04-06T07:53:28.038Z","updated_at":"2026-02-15T07:33:42.216Z","avatar_url":"https://github.com/Dgame.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Install\n\n### Arch-Linux\n\n```make\nsudo pacman -Sy \u0026\u0026 sudo pacman -S git make --noconfirm\ngit clone https://github.com/Dgame/dgame-system\ncd dgame-system \u0026\u0026 make -f arch.mk [check|install]\n```\n\n### Manjaro\n\n```make\nsudo pacman -Sy \u0026\u0026 sudo pacman -S git make --noconfirm\ngit clone https://github.com/Dgame/dgame-system\ncd dgame-system \u0026\u0026 make -f manjaro.mk [check|install]\n```\n\n### Debian\n\n```make\ngit clone https://github.com/Dgame/dgame-system\ncd dgame-system \u0026\u0026 make -f debian.mk [check|install]\n```\n\n### Windows 10 WSL (Debian, Ubuntu 18.04 / 20.04)\n\n- [Installation](https://devblogs.microsoft.com/commandline/install-wsl-with-a-single-command-now-available-in-windows-10-version-2004-and-higher/)\n  - `wsl.exe --install`\n\n**or**\n\n- [Documentation](https://docs.microsoft.com/de-de/windows/wsl/install-win10)\n  - `dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart`\n  - `dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart`\n  - `wsl --set-default-version 2`\n\n- [Windows-Terminal Documentation](https://docs.microsoft.com/en-us/windows/terminal/)\n  - [Settings.json](https://gist.github.com/Dgame/0504db67cfdcac8d8dea01c633ba4db1)\n\n- Install [FiraCode Nerd Font](https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/FiraCode.zip)\n\n#### Debian\n\n```make\nsudo apt-get -y update \u0026\u0026 sudo apt-get -y install git make\ngit clone https://github.com/Dgame/dgame-system\ncd dgame-system \u0026\u0026 make -f debian.mk install-on-wsl\n```\n\n#### Arch-Linux\n\n```sh\ndocker pull archlinux\ndocker create --name Arch archlinux:latest\ndocker export -o archlinux.tar Arch\nwsl.exe --import \"Arch\" \"$PWD/archlinux\" \"archlinux.tar\" --version 2\n```\n\nand then configure with\n\n```sh\nwsl.exe -d Arch\npacman-key --init\npacman -Syu\nuseradd -m \u003cusername\u003e\npasswd \u003cusername\u003e\npacman -S sudo vim\nexport EDITOR=/usr/bin/vim\nvisudo\n...\n\u003cusername\u003e ALL=(ALL) ALL\n...\n:wq\n\npwconv\ngrpconv\nchmod 0744 /etc/shadow\nchmod 0744 /etc/gshadow\n```\n\nYou can enable it by doing\n\n```sh\nwsl.exe -d \u003cdistro\u003e --user \u003cusername\u003e\n```\n\nAnd run the Playbook by doing\n\n```make\nsudo pacman -Sy \u0026\u0026 sudo pacman -S git make --noconfirm\ncd ~\ngit clone https://github.com/Dgame/dgame-system\ncd dgame-system \u0026\u0026 make -f arch.mk install-on-wsl\n```\n\n### Manjaro\n\n```sh\ndocker pull manjarolinux/base\ndocker create --name Manjaro manjarolinux/base\ndocker export -o manjaro.tar Manjaro\nwsl.exe --import \"Manjaro\" \"$PWD/manjaro\" \"manjaro.tar\" --version 2\n```\n\nand then configure like _Archlinux_.\n\n```make\nsudo pacman -Sy \u0026\u0026 sudo pacman -S git make --noconfirm\ngit clone https://github.com/Dgame/dgame-system\ncd dgame-system \u0026\u0026 make -f manjaro.mk install-on-wsl\n```\n\n### Don't forget to enable the WSL distro in the Docker-Desktop App\n\n![](Docker-Desktop.png)\n\n----\n\n - [x] git\n - [x] Fira-Code\n - [x] profanity\n - [x] keepass\n - [x] terminal\n   - [x] alacritty\n   - [x] tmux\n   - [x] taskwarrior\n - [x] shell\n   - [x] fish\n     - [x] fisher\n     - [x] spacefish (prompt) with fisher\n   - [x] starship (prompt)\n - [x] editor\n   - [x] vim\n   - [x] vs-code\n   - [x] sublime\n - [x] programming\n   - [x] rust\n   - [x] php\n     - [x] composer\n     - [x] php-pear / pecl\n   - [x] jetbrains\n   - [x] workspace\n - [x] docker\n     - [x] docker-compose\n - [x] credentials\n - [x] browser\n     - [x] Brave\n     - [x] Firefox\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdgame%2Fdgame-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdgame%2Fdgame-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdgame%2Fdgame-system/lists"}