From 456c706f1d28c01fe77b6658658acfd678b0db4d Mon Sep 17 00:00:00 2001 From: Dylan Date: Fri, 5 Feb 2016 17:02:53 +1100 Subject: [PATCH] Fix missing title --- fetch | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/fetch b/fetch index 5a8c0dfa..26afe4ea 100755 --- a/fetch +++ b/fetch @@ -1794,7 +1794,11 @@ info () { string="${bold}${title_color}${output}" string="${string/@/${at_color}@${title_color}}" length=${#output} - [ "$stdout_title" == "off" ] && string="" + + # Hide the title in stdout mode + [ "$stdout" == "on" ] && \ + [ "$stdout_title" == "off" ] &&\ + string="" ;; underline)