![]() |
[SOLVED] How do I adjust screen brightness on an Asus G750JS? - Printable Version +- Linux Lite Forums (https://www.linuxliteos.com/forums) +-- Forum: Hardware - Support (https://www.linuxliteos.com/forums/forumdisplay.php?fid=6) +--- Forum: Other (https://www.linuxliteos.com/forums/forumdisplay.php?fid=28) +--- Thread: [SOLVED] How do I adjust screen brightness on an Asus G750JS? (/showthread.php?tid=1840) Pages:
1
2
|
[SOLVED] How do I adjust screen brightness on an Asus G750JS? - m654321 - 05-16-2015 The screen brightness appears to be fixed (at maximum level) on the Asus G750JS with LL2.4. I would like to be able to adjust the brightness, e.g. dim it. The fn key + f5 or with f6 doesn't appear to work, neither does fn + arrow keys. Any help on this one much appreciated. Regards Mike Re: [SOLVED] How do I adjust screen brightness on an Asus G750JS? - anon222 - 05-16-2015 What is the output of Code: xrandr When I run xrandr I get this: Code: xrandr For me it's VGA-0 To change the brightness toi 70% I use this command Code: xrandr --output VGA-0 --brightness 0.7 Code: xrandr --output VGA-0 --brightness 1 If you are not sure how to do this and you have only one monitor connected, use this command: Code: xrandr | sed -n 's/ connected.*//p' | xargs -n1 -tri xrandr --output {} --brightness 0.6 To change it back use Code: xrandr | sed -n 's/ connected.*//p' | xargs -n1 -tri xrandr --output {} --brightness 1 Menu -> Settings -> Keyboard -> Application Shortcuts <- You can also set gamma while setting the brightness ![]() The colors are 1:1:1 meaning red:green:blue all set to 100% Code: xrandr | sed -n 's/ connected.*//p' | xargs -n1 -tri xrandr --output {} --brightness 0.6 --gamma 0.1:1:1 Code: xrandr | sed -n 's/ connected.*//p' | xargs -n1 -tri xrandr --output {} --brightness 1 --gamma 1:1:1 Re: [SOLVED] How do I adjust screen brightness on an Asus G750JS? - m654321 - 08-04-2015 Many thanks misko_2083 for the detailed post you made on May 16. What I wanted was to use the same key combinations to change the brightness of the backlight controller in LL (in a variable rather than fixed fashion), as used for win8.1 on the laptop mentioned, i.e...
In order to get the Fn keys working, "acpi_osi=" needs to be inserted into the file /etc/default/grub. This will enable support of the Fn keys and, apparently, works for the newer Asus laptops. For LL, you may need to first install gedit from the synaptic package manager (install/remove software choice in menu) as this does not appear to be installed in thedownloaded iso file by default. When gedit is installed, open the terminal and type the following code... Code: gksudo gedit /etc/default/grub Code: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" to... Code: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi=" then save and run... Code: sudo update-grub On reboot the Fn+F5 and Fn+F6 brightness keys will function. Regards, Mike Re: [SOLVED] How do I adjust screen brightness on an Asus G750JS? - anon222 - 08-04-2015 Cheers mate. ![]() Gedit is a fine text editor but any will do. In LL leafpad is the default text editor Code: gksudo leafpad /etc/default/grub Code: gksudo gedit /etc/default/grub Re: [SOLVED] How do I adjust screen brightness on an Asus G750JS? - avj - 08-04-2015 As a note if you don't have a manual for this computer it can be found here: https://www.asus.com/Notebooks/ASUS_ROG_G750JS/HelpDesk_Manual/ Re: [SOLVED] How do I adjust screen brightness on an Asus G750JS? - m654321 - 08-04-2015 Thankyou misko for the tip about using either leafpad or gedit as a text editor - didn't know that - I'm learning all the time... Thankyou avj re. ROG manual - do you have an Asus G750? How do you find it? I do have the manual, though didn't think to look there re. problems with Linux installations generally or backlighting issues specifically - maybe I should take a browse... Regards Mike Re: [SOLVED] How do I adjust screen brightness on an Asus G750JS? - avj - 08-04-2015 I am using an Acer netbook, but I recommend that you always keep the manual that comes with your computer. If you didn't get a manual most can be found by google searching the brand and model number, IE: "Asus G750JS manual". Most manufacturers have a download page for manuals. When you search look for links to the manufacturers website. Hopefully that will be helpful to others as well. Re: [SOLVED] How do I adjust screen brightness on an Asus G750JS? - m654321 - 08-05-2015 avj - I already have the manual - yes, definitely advisable to keep this, though as you say they can usually be found online. However, unsurprisingly, I haven't found a manual as yet that mentions Linux operating systems, certainly not for Samsung or Asus at any rate ... oops - I'm going off topic here... Regards Mike Re: [SOLVED] How do I adjust screen brightness on an Asus G750JS? - avj - 08-05-2015 As another side note it occurs to me that this might be a side effect of a misconfigured keyboard layout. IE: "Asus Laptop" layout instead of system default. Re: [SOLVED] How do I adjust screen brightness on an Asus G750JS? - Wirezfree - 08-05-2015 Just a comment on a similar situation with a "HP TS-15 Laptop" My Brightness did not work with the FN+F2 & FN+F3 keys. I found a fix with modifying the grub line to: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor" |