From 96d9d3c4f6504226ae0674ffb31061bf29387b25 Mon Sep 17 00:00:00 2001 From: Daniel Brooks Date: Fri, 11 Jun 2021 05:05:46 +0000 Subject: [PATCH] just removes any quotes from around the Alacritty font name, if any (#1708) --- neofetch | 1 + 1 file changed, 1 insertion(+) diff --git a/neofetch b/neofetch index 206dab8c..00578871 100755 --- a/neofetch +++ b/neofetch @@ -3274,6 +3274,7 @@ get_term_font() { term_font="${term_font/*family:}" term_font="${term_font/$'\n'*}" term_font="${term_font/\#*}" + term_font="${term_font//\"}" ;; "Apple_Terminal")