From 2f5f7f5ab43502fa8f63ac9ab65d72eb8165c50d Mon Sep 17 00:00:00 2001 From: Michael Straube Date: Thu, 3 May 2018 19:46:14 +0200 Subject: [PATCH] term_font: add qterminal support --- neofetch | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/neofetch b/neofetch index f793a1e7..9797133e 100755 --- a/neofetch +++ b/neofetch @@ -2195,6 +2195,11 @@ END term_font="$(trim_quotes "$term_font")" ;; + "qterminal") + term_font="$(awk -F '=' '/fontFamily=/ {a=$2} /fontSize=/ {b=$2} END{print a " " b}' \ + "${XDG_CONFIG_HOME}/qterminal.org/qterminal.ini")" + ;; + "sakura"*) term_font="$(awk -F '=' '/^font=/ {print $2; exit}' \ "${XDG_CONFIG_HOME}/sakura/sakura.conf")"