From b6b6083d2b65c30a3fcc14345b9ccaa0278093e1 Mon Sep 17 00:00:00 2001 From: Michael Straube Date: Sat, 15 Jul 2017 20:29:19 +0200 Subject: [PATCH] Term: Add xfce4-terminal fallback font --- neofetch | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/neofetch b/neofetch index 7b9369df..054c4f26 100755 --- a/neofetch +++ b/neofetch @@ -1875,8 +1875,9 @@ get_term_font() { term_font="$(gsettings get org.gnome.desktop.interface monospace-font-name)" term_font="$(trim_quotes "$term_font")" fi - # TODO: Figure out how to get the fallback font when not using system-font - # and no font is set in the config file. + + # Default fallback font hardcoded in terminal-preferences.c + [[ -z "$term_font" ]] && term_font="Monospace 12" ;; esac }