Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F106064457
D26692.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D26692.diff
View Options
Index: head/usr.bin/backlight/backlight.8
===================================================================
--- head/usr.bin/backlight/backlight.8
+++ head/usr.bin/backlight/backlight.8
@@ -22,7 +22,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd October 02, 2020
+.Dd October 06, 2020
.Dt BACKLIGHT 8
.Os
.Sh NAME
@@ -63,6 +63,7 @@
Query information about the backlight (name, type).
.It Ar value
Set the brightness level to this value, must be between 0 and 100.
+A trailing '%' is valid.
.It Ar incr | +
.Op Ar value
Decrement the backlight level.
Index: head/usr.bin/backlight/backlight.c
===================================================================
--- head/usr.bin/backlight/backlight.c
+++ head/usr.bin/backlight/backlight.c
@@ -144,6 +144,9 @@
action = BACKLIGHT_SET_BRIGHTNESS;
if (argc == 1) {
+ /* ignore a trailing % for user friendlyness */
+ if (argv[0][strlen(argv[0]) - 1] == '%')
+ argv[0][strlen(argv[0]) - 1] = '\0';
percent = strtonum(argv[0], 0, 100, &percent_error);
if (percent_error)
errx(1, "Cannot parse brightness level %s: %s",
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Dec 25, 7:12 PM (10 h, 43 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
15598087
Default Alt Text
D26692.diff (1 KB)
Attached To
Mode
D26692: backlight: Accept % in the input for user friendlyness
Attached
Detach File
Event Timeline
Log In to Comment