mirror of
https://github.com/maaslalani/gambit.git
synced 2024-11-19 16:39:50 +02:00
Play chess in your terminal
.github/workflows | ||
assets | ||
board | ||
border | ||
cmd | ||
fen | ||
game | ||
moves | ||
pieces | ||
position | ||
server | ||
square | ||
style | ||
.gitignore | ||
.goreleaser.yaml | ||
demo.tape | ||
docker-compose.yml | ||
Dockerfile | ||
go.mod | ||
go.sum | ||
LICENSE | ||
main.go | ||
out.gif | ||
README.md |
Gambit
Chess board in your terminal.
Installation
go install github.com/maaslalani/gambit@latest
or run from source
git clone https://github.com/maaslalani/gambit
go run ./...
Docker
Gambit is available as a Docker image at ghcr.io/maaslalani/gambit.
Play
You can play a game by running:
gambit
You can press ctrl+f to flip the board to give a better perspective for the second player.
Networked Play
You can play chess with gambit
over ssh
.
ssh [<name>@]<host> -p <port> -t <room> [<password>]
You can host your own gambit
SSH server with:
gambit serve
Move
There are two ways to move in gambit
:
- Type out the square the piece you want to move is on, then type out the square to which you want to move the piece.
- With the mouse, click on the target piece and target square.