wipe/README.md

37 lines
960 B
Markdown
Raw Normal View History

2022-04-10 06:56:57 +00:00
# Wipe
Wipe your terminal with a smooth animation.
This is the perfect program for you, if you like `clear` but want to add an unnecessary animation.
2022-04-10 07:08:17 +00:00
Download options can be found in the [release tab](https://github.com/ricoriedel/wipe/releases).
2022-04-10 06:56:57 +00:00
## Configuration
All configuration is done using command line parameters.
2022-04-10 07:08:17 +00:00
For a list of parameters, execute `wipe -h`.
Note that some parameters like `--color` can be specified multiple times with different values.
2022-04-10 06:56:57 +00:00
2022-04-15 12:30:00 +00:00
If you want a persistent solution, you can add an alias to your `.bashrc` equivalent.
```shell
# Persistent config
alias wipe='wipe -c red'
# Replace clear with wipe
alias clear='wipe'
```
If you are using `ZSH` as your shell, you can add a keyboard shortcut like this:
```shell
# Bind wipe to CTRL+W
wipe-zle() {
wipe
zle reset-prompt
}
zle -N wipe-zle
bindkey '^w' wipe-zle
```
2022-04-10 06:56:57 +00:00
## Showcase
[![Circle](doc/circle.gif)]()
[![Rhombus](doc/rhombus.gif)]()
2022-04-15 05:58:08 +00:00
[![Rotation](doc/sonar.gif)]()