How to change LCD intensivity/brightness
up vote
2
down vote
favorite
How to change brightness of LCD want image look deemed and soft the
xrandr --output LVDS1 --gamma 0.8:0.8:1.1
change only gamma but not the brightness of image. I have no option --brightness for xrandr
xrandr brightness
add a comment |
up vote
2
down vote
favorite
How to change brightness of LCD want image look deemed and soft the
xrandr --output LVDS1 --gamma 0.8:0.8:1.1
change only gamma but not the brightness of image. I have no option --brightness for xrandr
xrandr brightness
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
How to change brightness of LCD want image look deemed and soft the
xrandr --output LVDS1 --gamma 0.8:0.8:1.1
change only gamma but not the brightness of image. I have no option --brightness for xrandr
xrandr brightness
How to change brightness of LCD want image look deemed and soft the
xrandr --output LVDS1 --gamma 0.8:0.8:1.1
change only gamma but not the brightness of image. I have no option --brightness for xrandr
xrandr brightness
xrandr brightness
asked Jan 14 '13 at 14:25
Yurij73
62741326
62741326
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
up vote
2
down vote
accepted
From man xrandr
(this is not listed in the -h options, but it works for me):
--brightness brightness
Multiply the gamma values on the crtc currently attached to the output
to specified floating value. Useful for overly bright or overly dim
outputs. However, this is a software only modification, if your hardware has support to actually change the brightness, you will
probably prefer to use xbacklight.
I don't know if there is a universal standard for manipulating LCD brightness; if not this will become a matter of hardware drivers, etc.
Which I suspect it is; trying xbacklight -get
on my philips LED gave:
»xbacklight -get
No outputs have backlight property
Guess I am stuck using the gimpy buttons on the panel. ;)
BTW: xrandr --brightness
does exactly the same thing as using three identical values with --gamma
.
This is great. Works on FreeBSD even whenxbacklight(1)
doesn't!
– Mateusz Piotrowski
Sep 15 '16 at 21:29
add a comment |
up vote
1
down vote
If someone should stumble upon this but meant to look for a way to set backlight through xrandr
:
$ xrandr --verbose
gives some hints:
$ xrandr --verbose
Screen 0: ...
...
BACKLIGHT: 268
range: (0, 852)
Backlight: 268
range: (0, 852)
...
There is some property or variable BACKLIGHT; hopefully it can be set.
Reading from $ man 1 xrandr
reveals a --set <property> <value>
option. So there we have it:
$ xrandr --output <output> --set BACKLIGHT <value>
I use this to increase/decrease my backlight in about 1/40 steps:
$ xrandr --output eDP1 --set BACKLIGHT $(( $(xrandr --prop | awk '/^eDP1/,/^DP1/{if ($1 ~ /BACKLIGHT/) {print $NF; exit} }') + (852/40) ))
$ xrandr --output eDP1 --set BACKLIGHT $(( $(xrandr --prop | awk '/^eDP1/,/^DP1/{if ($1 ~ /BACKLIGHT/) {print $NF; exit} }') - (852/40) ))
add a comment |
up vote
0
down vote
Neither of the solutions above were sufficient for me.
Use the below to find which backlights are available.
ls /sys/class/backlight/
In my case there was a folder intel_backlight
in that folder.
Look for the max brightness file, it will let you know the upper bound you can set your brightness to, in my case this file:
/sys/class/backlight/intel_backlight/max_brightness
Set the brightness to max:
cat /sys/class/backlight/intel_backlight/max_brightness | sudo tee /sys/class/backlight/intel_backlight/brightness
New contributor
add a comment |
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
From man xrandr
(this is not listed in the -h options, but it works for me):
--brightness brightness
Multiply the gamma values on the crtc currently attached to the output
to specified floating value. Useful for overly bright or overly dim
outputs. However, this is a software only modification, if your hardware has support to actually change the brightness, you will
probably prefer to use xbacklight.
I don't know if there is a universal standard for manipulating LCD brightness; if not this will become a matter of hardware drivers, etc.
Which I suspect it is; trying xbacklight -get
on my philips LED gave:
»xbacklight -get
No outputs have backlight property
Guess I am stuck using the gimpy buttons on the panel. ;)
BTW: xrandr --brightness
does exactly the same thing as using three identical values with --gamma
.
This is great. Works on FreeBSD even whenxbacklight(1)
doesn't!
– Mateusz Piotrowski
Sep 15 '16 at 21:29
add a comment |
up vote
2
down vote
accepted
From man xrandr
(this is not listed in the -h options, but it works for me):
--brightness brightness
Multiply the gamma values on the crtc currently attached to the output
to specified floating value. Useful for overly bright or overly dim
outputs. However, this is a software only modification, if your hardware has support to actually change the brightness, you will
probably prefer to use xbacklight.
I don't know if there is a universal standard for manipulating LCD brightness; if not this will become a matter of hardware drivers, etc.
Which I suspect it is; trying xbacklight -get
on my philips LED gave:
»xbacklight -get
No outputs have backlight property
Guess I am stuck using the gimpy buttons on the panel. ;)
BTW: xrandr --brightness
does exactly the same thing as using three identical values with --gamma
.
This is great. Works on FreeBSD even whenxbacklight(1)
doesn't!
– Mateusz Piotrowski
Sep 15 '16 at 21:29
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
From man xrandr
(this is not listed in the -h options, but it works for me):
--brightness brightness
Multiply the gamma values on the crtc currently attached to the output
to specified floating value. Useful for overly bright or overly dim
outputs. However, this is a software only modification, if your hardware has support to actually change the brightness, you will
probably prefer to use xbacklight.
I don't know if there is a universal standard for manipulating LCD brightness; if not this will become a matter of hardware drivers, etc.
Which I suspect it is; trying xbacklight -get
on my philips LED gave:
»xbacklight -get
No outputs have backlight property
Guess I am stuck using the gimpy buttons on the panel. ;)
BTW: xrandr --brightness
does exactly the same thing as using three identical values with --gamma
.
From man xrandr
(this is not listed in the -h options, but it works for me):
--brightness brightness
Multiply the gamma values on the crtc currently attached to the output
to specified floating value. Useful for overly bright or overly dim
outputs. However, this is a software only modification, if your hardware has support to actually change the brightness, you will
probably prefer to use xbacklight.
I don't know if there is a universal standard for manipulating LCD brightness; if not this will become a matter of hardware drivers, etc.
Which I suspect it is; trying xbacklight -get
on my philips LED gave:
»xbacklight -get
No outputs have backlight property
Guess I am stuck using the gimpy buttons on the panel. ;)
BTW: xrandr --brightness
does exactly the same thing as using three identical values with --gamma
.
edited Jan 14 '13 at 15:25
answered Jan 14 '13 at 15:16
goldilocks
61.2k13150204
61.2k13150204
This is great. Works on FreeBSD even whenxbacklight(1)
doesn't!
– Mateusz Piotrowski
Sep 15 '16 at 21:29
add a comment |
This is great. Works on FreeBSD even whenxbacklight(1)
doesn't!
– Mateusz Piotrowski
Sep 15 '16 at 21:29
This is great. Works on FreeBSD even when
xbacklight(1)
doesn't!– Mateusz Piotrowski
Sep 15 '16 at 21:29
This is great. Works on FreeBSD even when
xbacklight(1)
doesn't!– Mateusz Piotrowski
Sep 15 '16 at 21:29
add a comment |
up vote
1
down vote
If someone should stumble upon this but meant to look for a way to set backlight through xrandr
:
$ xrandr --verbose
gives some hints:
$ xrandr --verbose
Screen 0: ...
...
BACKLIGHT: 268
range: (0, 852)
Backlight: 268
range: (0, 852)
...
There is some property or variable BACKLIGHT; hopefully it can be set.
Reading from $ man 1 xrandr
reveals a --set <property> <value>
option. So there we have it:
$ xrandr --output <output> --set BACKLIGHT <value>
I use this to increase/decrease my backlight in about 1/40 steps:
$ xrandr --output eDP1 --set BACKLIGHT $(( $(xrandr --prop | awk '/^eDP1/,/^DP1/{if ($1 ~ /BACKLIGHT/) {print $NF; exit} }') + (852/40) ))
$ xrandr --output eDP1 --set BACKLIGHT $(( $(xrandr --prop | awk '/^eDP1/,/^DP1/{if ($1 ~ /BACKLIGHT/) {print $NF; exit} }') - (852/40) ))
add a comment |
up vote
1
down vote
If someone should stumble upon this but meant to look for a way to set backlight through xrandr
:
$ xrandr --verbose
gives some hints:
$ xrandr --verbose
Screen 0: ...
...
BACKLIGHT: 268
range: (0, 852)
Backlight: 268
range: (0, 852)
...
There is some property or variable BACKLIGHT; hopefully it can be set.
Reading from $ man 1 xrandr
reveals a --set <property> <value>
option. So there we have it:
$ xrandr --output <output> --set BACKLIGHT <value>
I use this to increase/decrease my backlight in about 1/40 steps:
$ xrandr --output eDP1 --set BACKLIGHT $(( $(xrandr --prop | awk '/^eDP1/,/^DP1/{if ($1 ~ /BACKLIGHT/) {print $NF; exit} }') + (852/40) ))
$ xrandr --output eDP1 --set BACKLIGHT $(( $(xrandr --prop | awk '/^eDP1/,/^DP1/{if ($1 ~ /BACKLIGHT/) {print $NF; exit} }') - (852/40) ))
add a comment |
up vote
1
down vote
up vote
1
down vote
If someone should stumble upon this but meant to look for a way to set backlight through xrandr
:
$ xrandr --verbose
gives some hints:
$ xrandr --verbose
Screen 0: ...
...
BACKLIGHT: 268
range: (0, 852)
Backlight: 268
range: (0, 852)
...
There is some property or variable BACKLIGHT; hopefully it can be set.
Reading from $ man 1 xrandr
reveals a --set <property> <value>
option. So there we have it:
$ xrandr --output <output> --set BACKLIGHT <value>
I use this to increase/decrease my backlight in about 1/40 steps:
$ xrandr --output eDP1 --set BACKLIGHT $(( $(xrandr --prop | awk '/^eDP1/,/^DP1/{if ($1 ~ /BACKLIGHT/) {print $NF; exit} }') + (852/40) ))
$ xrandr --output eDP1 --set BACKLIGHT $(( $(xrandr --prop | awk '/^eDP1/,/^DP1/{if ($1 ~ /BACKLIGHT/) {print $NF; exit} }') - (852/40) ))
If someone should stumble upon this but meant to look for a way to set backlight through xrandr
:
$ xrandr --verbose
gives some hints:
$ xrandr --verbose
Screen 0: ...
...
BACKLIGHT: 268
range: (0, 852)
Backlight: 268
range: (0, 852)
...
There is some property or variable BACKLIGHT; hopefully it can be set.
Reading from $ man 1 xrandr
reveals a --set <property> <value>
option. So there we have it:
$ xrandr --output <output> --set BACKLIGHT <value>
I use this to increase/decrease my backlight in about 1/40 steps:
$ xrandr --output eDP1 --set BACKLIGHT $(( $(xrandr --prop | awk '/^eDP1/,/^DP1/{if ($1 ~ /BACKLIGHT/) {print $NF; exit} }') + (852/40) ))
$ xrandr --output eDP1 --set BACKLIGHT $(( $(xrandr --prop | awk '/^eDP1/,/^DP1/{if ($1 ~ /BACKLIGHT/) {print $NF; exit} }') - (852/40) ))
edited Mar 5 '16 at 9:28
answered Mar 5 '16 at 9:21
aude
334
334
add a comment |
add a comment |
up vote
0
down vote
Neither of the solutions above were sufficient for me.
Use the below to find which backlights are available.
ls /sys/class/backlight/
In my case there was a folder intel_backlight
in that folder.
Look for the max brightness file, it will let you know the upper bound you can set your brightness to, in my case this file:
/sys/class/backlight/intel_backlight/max_brightness
Set the brightness to max:
cat /sys/class/backlight/intel_backlight/max_brightness | sudo tee /sys/class/backlight/intel_backlight/brightness
New contributor
add a comment |
up vote
0
down vote
Neither of the solutions above were sufficient for me.
Use the below to find which backlights are available.
ls /sys/class/backlight/
In my case there was a folder intel_backlight
in that folder.
Look for the max brightness file, it will let you know the upper bound you can set your brightness to, in my case this file:
/sys/class/backlight/intel_backlight/max_brightness
Set the brightness to max:
cat /sys/class/backlight/intel_backlight/max_brightness | sudo tee /sys/class/backlight/intel_backlight/brightness
New contributor
add a comment |
up vote
0
down vote
up vote
0
down vote
Neither of the solutions above were sufficient for me.
Use the below to find which backlights are available.
ls /sys/class/backlight/
In my case there was a folder intel_backlight
in that folder.
Look for the max brightness file, it will let you know the upper bound you can set your brightness to, in my case this file:
/sys/class/backlight/intel_backlight/max_brightness
Set the brightness to max:
cat /sys/class/backlight/intel_backlight/max_brightness | sudo tee /sys/class/backlight/intel_backlight/brightness
New contributor
Neither of the solutions above were sufficient for me.
Use the below to find which backlights are available.
ls /sys/class/backlight/
In my case there was a folder intel_backlight
in that folder.
Look for the max brightness file, it will let you know the upper bound you can set your brightness to, in my case this file:
/sys/class/backlight/intel_backlight/max_brightness
Set the brightness to max:
cat /sys/class/backlight/intel_backlight/max_brightness | sudo tee /sys/class/backlight/intel_backlight/brightness
New contributor
New contributor
answered Nov 30 at 21:33
James McDonnell
101
101
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f61256%2fhow-to-change-lcd-intensivity-brightness%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown