From 352a1ba086eeefba43f65658e86c5e1fdfb6c236 Mon Sep 17 00:00:00 2001 From: Enid Brown <143949913+enidisepic@users.noreply.github.com> Date: Sun, 8 Mar 2026 15:06:08 +0100 Subject: [PATCH] Fix terminal font output in kitty (#484) [fix] fix terminal font output in kitty --- neofetch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neofetch b/neofetch index aae628d4..0a685e79 100755 --- a/neofetch +++ b/neofetch @@ -4783,8 +4783,8 @@ END term_font="from kitty.cli import *; o = create_default_opts(); \ print(f'{o.font_family} {o.font_size}')" term_font="$(kitty +runpy ''"$term_font"'')" - term_font="${term_font//=}" - term_font="${term_font//\'}" + term_font="${term_font#family=}" + term_font="$(trim_quotes "${term_font}")" ;; "konsole" | "yakuake")