Lifegrid
Conway's Game of Life starts from your login.
README Arcade turns a contribution calendar into zero-dependency animated SVG art. Every mode ships in light and dark variants and can refresh automatically with GitHub Actions.
Conway's Game of Life starts from your login.
Daily-seeded actors chase GitHub-colored cells.
Contribution-colored code rain falls over your login.
A Windows 98-style disk map compacts fragmented cells.
name: README Arcade
on:
workflow_dispatch:
schedule:
- cron: "17 3 * * *"
permissions:
contents: write
jobs:
render:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: ECD5A/README-Arcade@v1
with:
mode: snake
- name: Commit generated SVG
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add dist
git diff --cached --quiet || git commit -m "Update README Arcade"
git push