From 7b2dcea1171ce52f48d4b9100cf68b711c2f02ad Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Wed, 2 Nov 2016 09:39:37 +1100 Subject: [PATCH] Termfont: [Termite] Fix incorrect font choses. Closes #409 --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index afb29d51..2f10e260 100755 --- a/neofetch +++ b/neofetch @@ -1520,7 +1520,7 @@ gettermfont() { ;; "termite") - termfont="$(awk -F '= ' '!/^($|#|;)/ && /font/ {printf $2; exit}' "${XDG_CONFIG_HOME}/termite/config")" + termfont="$(awk -F '= ' '/^font/ {a=$0} END{print $2}' "${XDG_CONFIG_HOME}/termite/config")" ;; "mintty")