aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/backlight
Commit message (Collapse)AuthorAgeFilesLines
* backlight.8: Fix typo in manSalman Sarray2026-03-151-2/+2
| | | | | | | | Increment and decrement where swapped. Signed-off-by: Salman Sarray <salman@sarray.de> Reviewed by: ziaee, Christos Longros <chris.longros@gmail.com> Pull Request: https://github.com/freebsd/freebsd-src/pull/2072
* Remove residual blank line at start of MakefileWarner Losh2024-07-151-1/+0
| | | | | | | This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
* Remove $FreeBSD$: two-line nroff patternWarner Losh2023-08-161-2/+0
| | | | Remove /^\.\\"\n\.\\"\s*\$FreeBSD\$$\n/
* Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-161-1/+0
| | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
* Remove $FreeBSD$: two-line .h patternWarner Losh2023-08-161-2/+0
| | | | Remove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
* spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDWarner Losh2023-05-121-1/+1
| | | | | | | | | The SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catch up to that fact and revert to their recommended match of BSD-2-Clause. Discussed with: pfg MFC After: 3 days Sponsored by: Netflix
* backlight(8): Update usage() to match the manual pageMateusz Piotrowski2022-07-191-5/+5
| | | | MFC after: 1 week
* backlight.8: Show all possible modes in synopsisMateusz Piotrowski2022-07-191-2/+8
| | | | MFC after: 1 week
* backlight.8: Standardize synopsis and improve examplesMateusz Piotrowski2022-07-191-5/+5
| | | | MFC after: 1 week
* backlight.8: Fix description of -fMateusz Piotrowski2022-04-081-2/+2
| | | | | | | If an unqualified name is provided, /dev/backlight/ is automatically prepended instead of /dev/backlight. MFC after: 3 days
* backlight: Remove set but not used variablePiotr Pawel Stefaniak2022-03-181-3/+0
|
* Improve the wording for showing the brightness levelBrad Davis2021-03-121-2/+2
| | | | Reviewed by: allanjude
* backlight(8): Add note that with option it print the current brightness.Emmanuel Vadot2021-03-031-1/+4
| | | | | MFC after: 3 days PR: 253737
* backlight: Fix incr/decr with percent value of 0David Schlachter2021-03-031-2/+7
| | | | | | | This now does nothing instead of incr/decr by 10% MFC After: 3 days PR: 253736
* Clean up backlight.8Mateusz Piotrowski2020-10-271-16/+13
| | | | | | | | | | | - Sort flags - Stylize incr|+ and decr|- properly - Add a missing period at the end of the description - Use the standard layout for the EXAMPLES section (remove the list macro and add indentation to the code block) Notes: svn path=/head/; revision=367073
* backlight: check the lenght if the input before trimming '%'Baptiste Daroussin2020-10-061-1/+2
| | | | | | | | | Reported by: hps Reviewed by: manu Differential Revision: https://reviews.freebsd.org/D26693 Notes: svn path=/head/; revision=366472
* backlight: accept '%' in the brightness input valueBaptiste Daroussin2020-10-062-1/+5
| | | | | | | | | | | Improve friendlyness of the command line by accepting the percent brightness in both format: with or without a trailing '%' Reviewed by: manu Differential Revision: https://reviews.freebsd.org/D26692 Notes: svn path=/head/; revision=366471
* Add backlight(8)Emmanuel Vadot2020-10-023-0/+321
This tool is used to configure registered backlights. It can incr/decr (default to 10%) or accept a percentage value directly. Reviewed by: manpages (gbe@) Relnotes: yes Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D26251 Notes: svn path=/head/; revision=366370