Better kitty terminal font detection (#1795)
* Better kitty terminal font detection * Fix indent
This commit is contained in:
parent
8fc31ac001
commit
cc39539c55
1 changed files with 3 additions and 5 deletions
8
neofetch
8
neofetch
|
@ -3428,11 +3428,9 @@ END
|
|||
;;
|
||||
|
||||
"kitty"*)
|
||||
kitty_config="$(kitty --debug-config)"
|
||||
[[ "$kitty_config" != *font_family* ]] && return
|
||||
|
||||
term_font="$(awk '/^font_family|^font_size/ {$1="";gsub("^ *","",$0);print $0}' \
|
||||
<<< "$kitty_config")"
|
||||
term_font="from kitty.cli import *; o = create_default_opts(); \
|
||||
print(f'{o.font_family} {o.font_size}')"
|
||||
term_font="$(kitty +runpy ''"$term_font"'')"
|
||||
;;
|
||||
|
||||
"konsole" | "yakuake")
|
||||
|
|
Loading…
Reference in a new issue