diff options
| author | Robert Günzler <r@gnzler.io> | 2020-06-23 12:56:18 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2020-06-23 12:59:09 +0200 |
| commit | 269e8b88d68b1d48e2af92ef5b4b005f0bc229a9 (patch) | |
| tree | 7ad56f5db70dac6a11f8559e30b41883e4ef9037 /.config/alacritty/README.md | |
| parent | 53e5c16e508354b533c4cc61f45b88aee275d669 (diff) | |
alacritty: cleanup and restructure
Adds a README that explains how it works. Introduces common extension prefixes to identify overlays and color sets and makes the script output to stdout instead of to file
Diffstat (limited to '.config/alacritty/README.md')
| -rw-r--r-- | .config/alacritty/README.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.config/alacritty/README.md b/.config/alacritty/README.md new file mode 100644 index 0000000..b0cce63 --- /dev/null +++ b/.config/alacritty/README.md @@ -0,0 +1,18 @@ +# alacritty config + +* `*.ovl.yml` :: config overlays +* `*.color.yml` :: color overlays + +use `ovl.sh` to generate the final config + +``` +# generate default config +$ ovl.sh papercolor_dark.color.yml > alacritty.yml +``` + +``` +# generate scratch term config +$ ovl.sh papercolor_dark.color.yml launcher.ovl.yml > launcher.yml +``` + +`base.ovl.yml` is always included. |