From d8214dd0cd5c5faaa6e922dfd56fe66237566746 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Tue, 17 May 2016 00:07:22 +1000 Subject: [PATCH] termfont: Terminator support --- neofetch | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/neofetch b/neofetch index 76a9735d..ca875894 100755 --- a/neofetch +++ b/neofetch @@ -1766,6 +1766,13 @@ gettermfont () { "termite") termfont="$(awk -F '= ' '/font/ {printf $2; exit}' "${XDG_CONFIG_HOME}/termite/config")" ;; + + "terminator") + # This only works on a global basis right now. + # We need to figure out a way to get the current + # profile in use. + termfont="$(awk -F '= ' '/font/ {printf $2; exit}' "${XDG_CONFIG_HOME}/terminator/config")" + ;; esac }