a terminal-based typing game.
- go version > 1.24.1
- modern shell, (tested on zsh and bash)
- terminal emulator, with TRUE color support Test TRUE color support by runnig
printf "\x1b[38;2;255;100;0mTRUECOLOR\x1b[0m\n"
If your terminal emulator does NOT display the word TRUECOLOR
in red, it does not support 24-bit color, checkout this gist.
git clone https://github.com/prime-run/go-typer
cd go-typer
#to pick up the the ongoing changes
git checkout -b dev
go build -o go-typer
git clone https://github.com/prime-run/go-typer
docker build -t go-typer .
docker run --rm -it my-go-app
# above command Runs ./go-typer start inside the container
# docker run --rm -it go-typer [command] [--flag] also works
./go-typer --help
./go-typer start
and start typing
- timer starts when you type first letter
- press
Tab
to rest the same passage - press
Esc
orCltr + c
to exit
togo: a terminal-based todo manager built with same tech!
togo
Contributions are always welcome!
- Please checkout todos for next steps.
- Features in
dev
branch haven't been tested for different shells and terminal emulators.