summaryrefslogtreecommitdiff
path: root/src/backlight
diff options
context:
space:
mode:
authorPlan C <hubenchang0515@outlook.com>2020-08-28 19:50:35 +0800
committerGitHub <noreply@github.com>2020-08-28 13:50:35 +0200
commitb23728ec9f384ecb7055c29b1163c8bd64ecd6e6 (patch)
tree9f72c593267948b92633397c5428459b0487b153 /src/backlight
parent677bb0555a9b3b8accf1ecaa8e86d068eb679dda (diff)
downloadsystemd-b23728ec9f384ecb7055c29b1163c8bd64ecd6e6.tar.gz
Add simple usage message to systemd-backlight (#16709)
Diffstat (limited to 'src/backlight')
-rw-r--r--src/backlight/backlight.c28
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.");