Add support for alacritty's new config format
Signed-off-by: Bailey Kasin <baileykasin@gmail.com>
This commit is contained in:
parent
81134bbb34
commit
8e367e41a4
1 changed files with 15 additions and 5 deletions
20
neofetch
20
neofetch
|
@ -4426,14 +4426,24 @@ get_term_font() {
|
||||||
|
|
||||||
case $term in
|
case $term in
|
||||||
"alacritty"*)
|
"alacritty"*)
|
||||||
|
# Alacritty switched to TOML for it's config the first version
|
||||||
|
# with that will take a long time to be in repos and gain adoption.
|
||||||
|
|
||||||
shopt -s nullglob
|
shopt -s nullglob
|
||||||
confs=({$XDG_CONFIG_HOME,$HOME}/{alacritty,}/{.,}alacritty.ym?)
|
confs_yaml=({$XDG_CONFIG_HOME,$HOME}/{alacritty,}/{.,}alacritty.ym?)
|
||||||
|
confs_toml=({$XDG_CONFIG_HOME,$HOME}/{alacritty,}/{.,}alacritty.tom?)
|
||||||
shopt -u nullglob
|
shopt -u nullglob
|
||||||
|
|
||||||
[[ -f "${confs[0]}" ]] || return
|
if [[ -f "${confs_toml[0]}" ]]; then
|
||||||
|
term_font="$(awk '/normal:/ {while (!/family:/ || /#/)
|
||||||
term_font="$(awk '/normal:/ {while (!/family:/ || /#/)
|
{if (!getline) {exit}} print; exit}' "${confs_toml[0]}")"
|
||||||
{if (!getline) {exit}} print; exit}' "${confs[0]}")"
|
elif [[ -f "${confs_yaml[0]}" ]]; then
|
||||||
|
term_font="$(awk -F' *= *' '/^\[.*\]$/{section=substr($0, 2, length-2)}
|
||||||
|
section == "font.normal" && $1 == "family"{sub(/^"/,"", $2);
|
||||||
|
sub(/"$/, "", $2); print $2}' "${confs_yaml[0]}")"
|
||||||
|
else
|
||||||
|
return
|
||||||
|
fi
|
||||||
term_font="${term_font/*family:}"
|
term_font="${term_font/*family:}"
|
||||||
term_font="${term_font/$'\n'*}"
|
term_font="${term_font/$'\n'*}"
|
||||||
term_font="${term_font/\#*}"
|
term_font="${term_font/\#*}"
|
||||||
|
|
Loading…
Reference in a new issue