blob: d7a634c9b192259d62d4ba823099bc6e3afb0268 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/sh
set -e
new_colors=$1
config_file_tpl=${2:-alacritty.tpl.yml}
config_file=${3:-alacritty.yml}
set -x
yq m -x "$config_file_tpl" "$new_colors" > "$config_file"
|