O xrandr não aumentará o brilho da tela no nível do hardware (aquele que é alterado pelas chaves de brilho da tela do laptop). Como o manual do xrandr diz:
--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.
Em vez disso, use xbacklight
para alterar o brilho:
xbacklight -get #get the current level
xbacklight -set *percent* #set brightness to a given percentage
xbacklight -inc *percent* #increase by a given percentage
xbacklight -dec *percent* #decrease by a given percentage
No entanto, como isso é o mesmo que usar as teclas de brilho do laptop, isso não pode ultrapassar os limites de 0 a 100%. Se você deseja clarear / escurecer sua tela além desse limite, você pode usar o xrandr para forçar os níveis de brilho do software:
xrandr --output LVDS1 --brightness 0.5
Observe que xrandr
aceita frações (0,0-1,0), enquanto xbacklight
aceita porcentagens (0-100)