A terminal typing game
- Has a terminal manipulation library (doesn't use ncurses or any 3rd party terminal libraries)
- Will work in terminals that support ANSI escape codes in macOS and Linux
- Word lists are taken from monkey types top 10k list
- Not compatible on Windows
-
git clone the repository:
git clone https://github.com/sroshc/termtype.git
-
cd into the directory:
cd termtype
-
make the program:
make
-
Run the game:
./termtype
./termtype
accepts 2 integer terminal arguments, the number of words, and the top X most used words in english that the words should be picked out from.
For example:
./termtype 10 200
This will give you the 10 of the top 200 most used words in english to type.
-maybe wont work on macOS actually.