From 500f963619216ef138f0cd45d9050ca871e1c499 Mon Sep 17 00:00:00 2001 From: DaxGoon <44712376+DaxGoon@users.noreply.github.com> Date: Thu, 16 Sep 2021 20:49:58 +0300 Subject: [PATCH] brightnessctl: add page (#6516) --- pages/linux/brightnessctl.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/linux/brightnessctl.md diff --git a/pages/linux/brightnessctl.md b/pages/linux/brightnessctl.md new file mode 100644 index 0000000000..e237c1772b --- /dev/null +++ b/pages/linux/brightnessctl.md @@ -0,0 +1,24 @@ +# brightnessctl + +> Utility for reading and controlling device brightness for GNU/Linux operating systems. +> More information: . + +- List devices with changeable brightness: + +`brightnessctl --list` + +- Print the current brightness of the display backlight: + +`brightnessctl get` + +- Set the brightness of the display backlight to a specified percentage within range: + +`brightnessctl set {{50%}}` + +- Increase brightness by a specified increment: + +`brightnessctl set {{+10%}}` + +- Decrease brightness by a specified decrement: + +`brightnessctl set {{-10%}}`