From e31e9a400ebb6b34f6260fdb35bb909c7376e423 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 3 Oct 2016 17:09:01 +1100 Subject: [PATCH] Term Font (Termite): Ignore comments --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index a68ed0d6..a418b55d 100755 --- a/neofetch +++ b/neofetch @@ -1591,7 +1591,7 @@ gettermfont() { ;; "termite") - termfont="$(awk -F '= ' '!/^($|#)/ && /font/ {printf $2; exit}' "${XDG_CONFIG_HOME}/termite/config")" + termfont="$(awk -F '= ' '!/^($|#|;)/ && /font/ {printf $2; exit}' "${XDG_CONFIG_HOME}/termite/config")" ;; "mintty")