How to change LCD intensivity/brightness











up vote
2
down vote

favorite
1












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










share|improve this question


























    up vote
    2
    down vote

    favorite
    1












    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










    share|improve this question
























      up vote
      2
      down vote

      favorite
      1









      up vote
      2
      down vote

      favorite
      1






      1





      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










      share|improve this question













      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 14 '13 at 14:25









      Yurij73

      62741326




      62741326






















          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.






          share|improve this answer























          • This is great. Works on FreeBSD even when xbacklight(1) doesn't!
            – Mateusz Piotrowski
            Sep 15 '16 at 21:29


















          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) ))





          share|improve this answer






























            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





            share|improve this answer








            New contributor




            James McDonnell is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.


















              Your Answer








              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "106"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              convertImagesToLinks: false,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              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

























              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.






              share|improve this answer























              • This is great. Works on FreeBSD even when xbacklight(1) doesn't!
                – Mateusz Piotrowski
                Sep 15 '16 at 21:29















              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.






              share|improve this answer























              • This is great. Works on FreeBSD even when xbacklight(1) doesn't!
                – Mateusz Piotrowski
                Sep 15 '16 at 21:29













              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.






              share|improve this answer














              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.







              share|improve this answer














              share|improve this answer



              share|improve this answer








              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 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
















              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












              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) ))





              share|improve this answer



























                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) ))





                share|improve this answer

























                  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) ))





                  share|improve this answer














                  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) ))






                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Mar 5 '16 at 9:28

























                  answered Mar 5 '16 at 9:21









                  aude

                  334




                  334






















                      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





                      share|improve this answer








                      New contributor




                      James McDonnell is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.






















                        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





                        share|improve this answer








                        New contributor




                        James McDonnell is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.




















                          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





                          share|improve this answer








                          New contributor




                          James McDonnell is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.









                          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






                          share|improve this answer








                          New contributor




                          James McDonnell is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.









                          share|improve this answer



                          share|improve this answer






                          New contributor




                          James McDonnell is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.









                          answered Nov 30 at 21:33









                          James McDonnell

                          101




                          101




                          New contributor




                          James McDonnell is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.





                          New contributor





                          James McDonnell is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.






                          James McDonnell is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.






























                              draft saved

                              draft discarded




















































                              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.




                              draft saved


                              draft discarded














                              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





















































                              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







                              Popular posts from this blog

                              サソリ

                              広島県道265号伴広島線

                              Accessing regular linux commands in Huawei's Dopra Linux