lavat/README.md

35 lines
1.1 KiB
Markdown
Raw Normal View History

2022-10-16 18:06:46 -07:00
# lavat
Little program that simulates a lava lamp in the terminal.
## Usage
```
2022-10-16 18:11:32 -07:00
Usage: lavat [OPTIONS]
2022-10-16 18:06:46 -07:00
OPTIONS:
-c COLOR Set color. Available colours: red, blue, yellow, green, cyan and magenta.
Besides those colors the default one is the normal foreground of your terminal.
-s SPEED Set the speed, from 1 to 5. (default 1)
-r RADIUS Set the radius of the metaballs, from 1 to 10. (default: 5)
-R RIM Set a "rim" for each metaball, from 1 to 5. (default: none)
This option does not work with the default color
-b NBALLS Set the number of metaballs in the simulation, from 2 to 20. (default: 10)
-h Print help.
```
## Demo
`lavat -c red -R 1`
2022-10-16 18:10:00 -07:00
2022-10-16 18:10:37 -07:00
![demo 1](https://github.com/AngelJumbo/lavat/blob/main/demo/1.gif?raw=true)
2022-10-16 18:06:46 -07:00
`lavat -c cyan -R 4 -b 20 -r 2`
2022-10-16 18:10:37 -07:00
![demo 2](https://github.com/AngelJumbo/lavat/blob/main/demo/2.gif?raw=true)
2022-10-16 18:06:46 -07:00
## Credits
- This program was made with [Termbox2](https://github.com/termbox/termbox2).
- [Metaballs](https://en.wikipedia.org/wiki/Metaballs).