diff options
author | Plan C <hubenchang0515@outlook.com> | 2020-08-28 13:50:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-28 13:50:35 +0200 |
commit | b23728ec9f384ecb7055c29b1163c8bd64ecd6e6 (patch) | |
tree | 9f72c593267948b92633397c5428459b0487b153 /src/backlight/backlight.c | |
parent | partition/makefs: Include missing sys/file.h header (diff) | |
download | systemd-b23728ec9f384ecb7055c29b1163c8bd64ecd6e6.tar.xz systemd-b23728ec9f384ecb7055c29b1163c8bd64ecd6e6.zip |
Add simple usage message to systemd-backlight (#16709)
Diffstat (limited to 'src/backlight/backlight.c')
-rw-r--r-- | src/backlight/backlight.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/backlight/backlight.c b/src/backlight/backlight.c index 3a644363e1..215b3bbfe4 100644 --- a/src/backlight/backlight.c +++ b/src/backlight/backlight.c @@ -13,11 +13,36 @@ #include "main-func.h" #include "mkdir.h" #include "parse-util.h" +#include "pretty-print.h" +#include "terminal-util.h" #include "reboot-util.h" #include "string-util.h" #include "strv.h" #include "util.h" +static int help(void) { + _cleanup_free_ char *link = NULL; + int r; + + r = terminal_urlify_man("systemd-backlight", "8", &link); + if (r < 0) + return log_oom(); + + printf("%s save [backlight|leds]:DEVICE\n" + "%s load [backlight|leds]:DEVICE\n" + "\n%sSave and restore backlight brightness at shutdown and boot.%s\n\n" + " save Save current brightness\n" + " load Set brightness to be the previously saved value\n" + "\nSee the %s for details.\n" + , program_invocation_short_name + , program_invocation_short_name + , ansi_highlight(), ansi_normal() + , link + ); + + return 0; +} + static int find_pci_or_platform_parent(sd_device *device, sd_device **ret) { const char *subsystem, *sysname, *value; sd_device *parent; @@ -334,6 +359,9 @@ static int run(int argc, char *argv[]) { log_setup_service(); + if (strv_contains(strv_skip(argv, 1), "--help")) + return help(); + if (argc != 3) return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "This program requires two arguments."); |