2022-10-17 01:06:46 +00:00
|
|
|
# lavat
|
|
|
|
|
|
|
|
Little program that simulates a lava lamp in the terminal.
|
2022-10-30 01:07:31 +00:00
|
|
|
![demo](https://github.com/AngelJumbo/demos/blob/main/lavat/3.gif?raw=true)
|
2022-10-17 02:07:11 +00:00
|
|
|
## Installation
|
2022-10-17 01:06:46 +00:00
|
|
|
|
2022-10-17 16:41:09 +00:00
|
|
|
Requirements: A Unix-like system, a C compiler and make.
|
2022-10-17 07:21:49 +00:00
|
|
|
|
2022-10-17 02:07:11 +00:00
|
|
|
```
|
|
|
|
git clone https://github.com/AngelJumbo/lavat
|
|
|
|
cd lavat
|
2022-10-17 21:14:26 +00:00
|
|
|
make install
|
2022-10-17 02:07:11 +00:00
|
|
|
```
|
2022-10-17 09:13:39 +00:00
|
|
|
|
|
|
|
### Arch Linux
|
2022-10-17 12:20:49 +00:00
|
|
|
Lavat is also available on the AUR [here](https://aur.archlinux.org/packages/lavat-git). Install it with your favourite AUR-helper or manually.
|
2022-10-17 09:13:39 +00:00
|
|
|
```
|
|
|
|
$ paru -S lavat-git
|
|
|
|
```
|
2022-10-17 01:06:46 +00:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
```
|
2022-10-18 03:53:24 +00:00
|
|
|
Usage: lavat [OPTIONS]
|
2022-10-17 01:06:46 +00:00
|
|
|
OPTIONS:
|
2022-10-21 22:53:39 +00:00
|
|
|
-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.
|
2022-11-27 04:22:57 +00:00
|
|
|
-s <SPEED> Set the speed, from 1 to 10. (default 5)
|
2022-10-21 22:53:39 +00:00
|
|
|
-r <RADIUS> Set the radius of the metaballs, from 1 to 10. (default: 5)
|
|
|
|
-R <RIM> Set a rim for each metaball, sizes from 1 to 5.(default: none)
|
|
|
|
This option does not work with the default color.
|
2022-11-11 04:20:03 +00:00
|
|
|
-k <COLOR> Set the color of the rim if there is one. Available colours: red, blue, yellow, green, cyan and magenta.
|
2022-10-21 22:53:39 +00:00
|
|
|
-b <NBALLS> Set the number of metaballs in the simulation, from 2 to 20. (default: 10)
|
|
|
|
-F <CHARS> Allows for a custom set of chars to be used
|
2022-11-11 00:17:19 +00:00
|
|
|
Only ascii symbols are supported for now, wide/unicode characters may appear broken.
|
2022-10-21 22:53:39 +00:00
|
|
|
-C Retain the entire lava inside the terminal.
|
2022-10-21 22:56:21 +00:00
|
|
|
It may not work well with a lot of balls or with a bigger radius than the default one.
|
2022-10-21 22:53:39 +00:00
|
|
|
-h Print help.
|
2022-10-17 01:06:46 +00:00
|
|
|
```
|
2022-10-18 02:36:34 +00:00
|
|
|
|
2022-10-17 01:06:46 +00:00
|
|
|
## Demo
|
|
|
|
|
|
|
|
`lavat -c red -R 1`
|
2022-10-17 01:10:00 +00:00
|
|
|
|
2022-10-30 01:07:31 +00:00
|
|
|
![demo 1](https://github.com/AngelJumbo/demos/blob/main/lavat/1.gif?raw=true)
|
2022-10-17 01:06:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
`lavat -c cyan -R 4 -b 20 -r 2`
|
|
|
|
|
2022-10-30 01:07:31 +00:00
|
|
|
![demo 2](https://github.com/AngelJumbo/demos/blob/main/lavat/2.gif?raw=true)
|
2022-10-17 01:06:46 +00:00
|
|
|
|
2022-10-18 02:36:34 +00:00
|
|
|
If you send more than one character to the -F option you can have 3d-ish effect.
|
|
|
|
|
2022-10-18 22:45:59 +00:00
|
|
|
`lavat -c blue -R2 -F @@:::::: -r10`
|
2022-10-18 02:36:34 +00:00
|
|
|
|
2022-10-30 01:07:31 +00:00
|
|
|
![demo 2](https://github.com/AngelJumbo/demos/blob/main/lavat/4.gif?raw=true)
|
2022-10-18 02:36:34 +00:00
|
|
|
|
2022-11-11 03:52:39 +00:00
|
|
|
For the Alacritty and Kitty users I know that the -R option haven't been working for you, but now you can set the color of the rim independently. Try:
|
2022-11-11 03:21:32 +00:00
|
|
|
|
|
|
|
`lavat -c yellow -R1 -k red`
|
|
|
|
|
|
|
|
![demo 2](https://github.com/AngelJumbo/demos/blob/main/lavat/5.gif?raw=true)
|
|
|
|
|
2022-10-18 02:58:59 +00:00
|
|
|
(The colors depend on your color scheme.)
|
2022-10-17 03:55:25 +00:00
|
|
|
|
2022-10-17 04:14:24 +00:00
|
|
|
## Credits
|
2022-10-17 01:06:46 +00:00
|
|
|
|
2022-10-17 16:33:34 +00:00
|
|
|
- This program is made with [Termbox2](https://github.com/termbox/termbox2).
|
2022-10-18 02:36:34 +00:00
|
|
|
- [Lava lamp in JavaScript](https://codeguppy.com/site/tutorials/lava-lamp.html)
|