← all modules

Chess (terminal)

Play chess in a terminal block. Needs chess-tui installed.

  • command · tui
  • by alekdob
  • v0.1.0
  • 6 x 6 cells
  • tui
  • game

about

A chess board in a block, for the minutes while an agent is working. chess-tui is a Rust TUI; blockodile just runs it.

Any TUI works the same way: this module is 8 lines of JSON. Copy it and change the command.

module.json

{
  "id": "chess",
  "name": "Chess (terminal)",
  "kind": "command",
  "command": "chess-tui",
  "w": 6,
  "h": 6,
  "description": "Play chess in a terminal block. Needs chess-tui installed.",
  "author": "alekdob",
  "tags": [
    "tui",
    "game"
  ],
  "version": "0.1.0",
  "glyph": [
    "..#..",
    ".###.",
    "..#..",
    ".###.",
    "#####"
  ],
  "requires": "cargo install chess-tui"
}