From 0697c4d409f4aae0adffcac5dccef9b9b72f940d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Str=C3=BCbing?= Date: Mon, 18 Dec 2017 18:44:24 +0100 Subject: [PATCH] light: add page (#1814) --- pages/linux/light.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pages/linux/light.md diff --git a/pages/linux/light.md b/pages/linux/light.md new file mode 100644 index 0000000000..0421f7c2bd --- /dev/null +++ b/pages/linux/light.md @@ -0,0 +1,19 @@ +# light + +> CLI to control the backlight of your screen. + +- Get the current backlight value in percent: + +`light` + +- Set the backlight value to 50 percent: + +`light -S {{50}}` + +- Reduce 20 percent from the current backlight value: + +`light -U {{20}}` + +- Add 20 percent to the current backlight value: + +`light -A {{20}}`