https://github.com/daneelsan/matrixcurses
A Matrix-style dripping text
https://github.com/daneelsan/matrixcurses
c curses
Last synced: about 1 month ago
JSON representation
A Matrix-style dripping text
- Host: GitHub
- URL: https://github.com/daneelsan/matrixcurses
- Owner: daneelsan
- License: mit
- Created: 2021-04-28T16:47:47.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-28T17:11:30.000Z (about 5 years ago)
- Last Synced: 2025-03-04T12:46:25.597Z (over 1 year ago)
- Topics: c, curses
- Language: C
- Homepage:
- Size: 56.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
- [matrixcurses](#matrixcurses)
- [Run](#run)
- [Build](#build)
- [Modify](#modify)
- [ToDo](#todo)
# matrixcurses
A Matrix-style dripping text (source: https://youtu.be/K8dCh3ZMLN8)
## Run
```console
$ ./matrix
```

## Build
```console
$ 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.