Improve compatability, improve injection stability

This commit is contained in:
Dakedres 2024-04-12 16:29:04 -06:00
parent 71f922de59
commit bd4a42425c

View File

@ -130,17 +130,18 @@ inject() {
parse_scheme parse_scheme
check_scheme_path check_scheme_path
parse_comment_pattern parse_comment_pattern
tmp=$(mktemp)
if [ "$comment_start" == "" ]; then if [ "$comment_start" == "" ]; then
comment_start="#" comment_start="#"
fi fi
awk -i inplace \ awk -v blockstart="${comment_start}START SHCHEMES BLOCK" \
-v blockstart="${comment_start}START SHCHEMES BLOCK" \
-v blockend="${comment_start}END SHCHEMES BLOCK" \ -v blockend="${comment_start}END SHCHEMES BLOCK" \
-v commentend="$comment_end" \ -v commentend="$comment_end" \
-v scheme="$scheme" \ -v scheme="$scheme" \
-v shchemes="$shchemes_path" \ -v shchemes="$shchemes_path" \
-v sq="'" \ -v sq="'" \
-v nl="\n" \
-F ":" ' -F ":" '
!inblock { print } !inblock { print }
inblock { inblock {
@ -153,39 +154,31 @@ $1 ~ blockstart {
system("/usr/bin/env bash -c " sq "SCHEME=\"" scheme "\";" command sq); system("/usr/bin/env bash -c " sq "SCHEME=\"" scheme "\";" command sq);
next next
} }
$1 ~ blockend { $1 == blockend && inblock {
inblock = 0; inblock = 0;
print; print nl blockend commentend;
next next;
} }
ENDFILE { ENDFILE {
if(inblock) { if(inblock) {
print blockend commentend; print nl blockend commentend;
for(i=1;i<=bi;i++) { for(i=1;i<=bi;i++) {
print lines[i]; print lines[i];
} }
} }
} }
' "$path" ' "$path" > "$tmp" && mv "$tmp" "$path"
}
convert_tinted_template() {
path=$1
sed -r \
-e 's/\{\{base([0-9A-F]+)-hex\}\}/{{base\1}}/' \
-e 's/\{\{base([0-9A-F]+)-rgb-r\}\}/{{rgb_r base\1}}/' \
-e 's/\{\{base([0-9A-F]+)-rgb-g\}\}/{{rgb_g base\1}}/' \
-e 's/\{\{base([0-9A-F]+)-rgb-b\}\}/{{rgb_b base\1}}/' "$path"
} }
convert_tinted_scheme() { convert_tinted_scheme() {
path=$1 path=$1
tmp=$(mktemp)
awk -i inplace -F ' *: *' ' awk -F ' *: *' '
/^#/ { print } /^#/ { print }
$1 ~ "palette" { p = 1; next } $1 ~ "palette" { p = 1; next }
p && /^ +/ { gsub(/ /, "", $1); print $1 "=" $2 } p && /^ +/ { gsub(/ /, "", $1); print $1 "=" $2 }
' "$path" ' "$path" > "$tmp" && mv -f "$tmp" "$path"
} }
install_tinted_scheme() { install_tinted_scheme() {
@ -216,11 +209,23 @@ install_tinted_scheme() {
echo "Installed ${scheme}" echo "Installed ${scheme}"
} }
convert_tinted_template() {
path=$1
sed -r \
-e 's/\{\{base([0-9A-F]+)-hex\}\}/{{base\1}}/' \
-e 's/\{\{base([0-9A-F]+)-rgb-r\}\}/{{rgb_r base\1}}/' \
-e 's/\{\{base([0-9A-F]+)-rgb-g\}\}/{{rgb_g base\1}}/' \
-e 's/\{\{base([0-9A-F]+)-rgb-b\}\}/{{rgb_b base\1}}/' "$path"
}
install_tinted_template() { install_tinted_template() {
url=$1 url=$1
target=$2 target=$2
tmp=$(mktemp)
curl "$url" | convert_tinted_template > "${shchemes_dir}/base16/templates/${target}.mustache" curl "$url" > "$tmp"
convert_tinted_template "$tmp" > "${shchemes_dir}/base16/templates/${target}.mustache"
rm "$tmp"
} }
manual() { manual() {