From b95dd4ce172688c1241f2b3ce34e6438ce2a5e51 Mon Sep 17 00:00:00 2001 From: Linus Dierheimer Date: Wed, 3 Mar 2021 20:05:21 +0100 Subject: [PATCH] fixed a missing newline in help output --- src/fastfetch.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/fastfetch.c b/src/fastfetch.c index 95c0cf6c6..ef7e068a8 100644 --- a/src/fastfetch.c +++ b/src/fastfetch.c @@ -38,7 +38,7 @@ static void printHelp() " --print-logos: shows available logos and exits\n" " --print-default-config: prints the default config and exits\n" " --structure : sets the structure of the fetch. Must be a colon seperated list of keys\n" - " --set : hard set the value of an key" + " --set : hard set the value of an key\n" " -l , --logo : sets the shown logo. Also changes the main color accordingly\n" " -c , --color : sets the color of the keys. Must be a linux console color code\n" " -s , --seperator : sets the distance between logo and text\n" @@ -48,7 +48,6 @@ static void printHelp() " -r --recache : if set to true, no cached values will be used\n" "\n" "If an value starts with an ?, it is optional. \"true\" will be used if not set.\n" - "\n" "All options can be make permanent in $XDG_CONFIG_HOME/fastfetch/config.conf" ); }