summaryrefslogtreecommitdiffstats
path: root/source/rofi.c
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-11-25 21:47:28 +0100
committerDave Davenport <qball@gmpclient.org>2016-11-25 21:47:28 +0100
commit80c7b3774e304153e1a418d6d03dd272e9aae876 (patch)
treefdae10e5140ed214b8e2533b423a9aed990a32bb /source/rofi.c
parent31115dd3122a1994a83f59f4be485a814d1a1f41 (diff)
Fix compare add forum to links.
Diffstat (limited to 'source/rofi.c')
-rw-r--r--source/rofi.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/source/rofi.c b/source/rofi.c
index f7b7160b..3ba03282 100644
--- a/source/rofi.c
+++ b/source/rofi.c
@@ -291,14 +291,15 @@ static void help ( G_GNUC_UNUSED int argc, char **argv )
printf ( "\t* asan %sdisabled%s\n", is_term?color_red:"", is_term?color_reset:"");
#endif
printf ( "\n" );
- printf ( "For more information see: man rofi\n" );
+ printf ( "For more information see: %sman rofi%s\n", is_term?color_bold:"",is_term?color_reset:"" );
#ifdef GIT_VERSION
- printf ( "Version: "GIT_VERSION "\n" );
+ printf ( "Version: %s"GIT_VERSION "%s\n", is_term?color_bold:"",is_term?color_reset:"" );
#else
- printf ( "Version: "VERSION "\n" );
+ printf ( "Version: %s"VERSION "%s\n", is_term?color_bold:"",is_term?color_reset:"" );
#endif
- printf ( "Bugreports: "PACKAGE_BUGREPORT "\n" );
- printf ( "Support: #rofi @ freenode.net\n" );
+ printf ( "Bugreports: %s"PACKAGE_BUGREPORT "%s\n", is_term?color_bold:"",is_term?color_reset:"" );
+ printf ( "Support: %s"PACKAGE_URL "%s\n", is_term?color_bold:"",is_term?color_reset:"" );
+ printf ( " %s#rofi @ freenode.net%s\n", is_term?color_bold:"",is_term?color_reset:"" );
}
/**