From 8032f6ca7ad6c94c67ddf064f92ea27dcc37cb29 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 16 May 2016 21:52:22 +1000 Subject: [PATCH] termfont: Add termite support --- neofetch | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/neofetch b/neofetch index 4eba3793..76a9735d 100755 --- a/neofetch +++ b/neofetch @@ -1762,6 +1762,10 @@ gettermfont () { "xfce4-terminal") termfont="$(awk -F '=' '/FontName/ {printf $2}' "${XDG_CONFIG_HOME}/xfce4/terminal/terminalrc")" ;; + + "termite") + termfont="$(awk -F '= ' '/font/ {printf $2; exit}' "${XDG_CONFIG_HOME}/termite/config")" + ;; esac }