daneelsan / matrixcurses

A Matrix-style dripping text

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

matrixcurses

A Matrix-style dripping text (source: https://youtu.be/K8dCh3ZMLN8)

Run

$ ./matrix

./matrix output

Build

$ make
clang -g -Wall -c main.c -o main.o
clang -g -Wall -c matrix.c -o matrix.o
clang -g -Wall -c ui.c -o ui.o
clang -g -Wall -o matrix main.o matrix.o ui.o -lncurses

Modify

To change the number of iterations, modify ITERATIONS in main.c.

To change the refresh delay, modify REFRESH_DELAY in main.c.

ToDo

  • Accept ITERATIONS and REFRESH_DELAY as arguments.

About

A Matrix-style dripping text

License:MIT License


Languages

Language:C 96.2%Language:Makefile 3.8%