summaryrefslogtreecommitdiff
path: root/src/notify
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2019-11-28 10:51:05 +0100
committerLennart Poettering <lennart@poettering.net>2019-11-28 11:41:24 +0100
commit6f63c5b8b10a4ead4a567c174d5988e5985d12ef (patch)
treef4b27715fb168641b02421ffcec6b8b088c2cf68 /src/notify
parent37a92352d6bbac65ca6b1b3c958939a4ccc7d51a (diff)
downloadsystemd-6f63c5b8b10a4ead4a567c174d5988e5985d12ef.tar.gz
notify: add color to --help
We do that for most tools now, do so here now, too.
Diffstat (limited to 'src/notify')
-rw-r--r--src/notify/notify.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/notify/notify.c b/src/notify/notify.c
index c2e7683bcf..a76f337695 100644
--- a/src/notify/notify.c
+++ b/src/notify/notify.c
@@ -17,6 +17,7 @@
#include "pretty-print.h"
#include "string-util.h"
#include "strv.h"
+#include "terminal-util.h"
#include "user-util.h"
#include "util.h"
@@ -35,8 +36,8 @@ static int help(void) {
if (r < 0)
return log_oom();
- printf("%s [OPTIONS...] [VARIABLE=VALUE...]\n\n"
- "Notify the init system about service status updates.\n\n"
+ printf("%s [OPTIONS...] [VARIABLE=VALUE...]\n"
+ "\n%sNotify the init system about service status updates.%s\n\n"
" -h --help Show this help\n"
" --version Show package version\n"
" --ready Inform the init system about service start-up completion\n"
@@ -46,6 +47,7 @@ static int help(void) {
" --booted Check if the system was booted up with systemd\n"
"\nSee the %s for details.\n"
, program_invocation_short_name
+ , ansi_highlight(), ansi_normal()
, link
);