9

When I press Fn+F6 the change in brightness is too big. How can I make it move less than it does now? (Let's say, half that, for example.)

(11.04/Gnome. I'm on proprietary nvidia drivers.)

EDIT: I haven't tried what Rinzwind has written below because , after throwing a cup of coffee on my laptop, my keyboard was destroyed (so i no longer have the FN button that is needed - i'm currently writing from an external one). I have already ordered a new one and i will collect it from the service center tomorrow at noon

Chriskin
  • 3,290

3 Answers3

3

From bug 207473 "Screen brightness double level changes on Dell laptops".

  • If your problem is an error in hal or acpid you can circumvent it by adding blacklist video in /etc/modprobe.d/blacklist.

  • Testing can be done by issuing:

    /etc/init.d/acpid stop
    /etc/init.d/hal stop
    

    If this works 2 programs are changing the brightness level at the same time (thus doubling it) and you should add yourself to the affected people on the bug too (it's old and never got fixed it seems?).

Rinzwind
  • 309,379
2

It's not possible, you can confirm it yourself.

Open a terminal and run:

cd /sys/class/backlight/*

To get the current brightness level:

cat brightness

To display the maximum brightness, run:

cat max_brightness

The brightness level can be a value between 0 and the output of max_brightness. To change it to 5, run:

echo 5 | sudo tee brightness

Using these commands, you can confirm that brightness cannot be changes in "percents", just in "levels".

Lekensteyn
  • 178,446
1

Using the commands provided on my answer here, on Gnome Shell (17.10 and above) go to Settings > Devices > Keyboard > Custom shortcuts, clic on the plus button:

enter image description here

Pablo Bianchi
  • 17,371