You are not logged in.
Pages: 1
Hello everyone,
I'm trying to setup the Fn keys on my thinkpad T470 with ACPI, everything works well except for the brightness keys.
For example, this is the part of my /etc/acpi/handler.sh that handles my volume down key:
button/volumedown)
case "$2" in
VOLDN) echo amixer set Master 5- ;;
*) logger "ACPI action undefined: $2" ;;
esac
;;it works perfectly, but the part used for my brightness down key doesn't do anything:
video/brightnessdown)
case "$2" in
BRTDN) echo xbacklight -dec 5 ;;
*) logger "ACPI action undefined: $2" ;;
esac
;;does anyone knows why ?
Offline
Is that xbacklight from the xbacklight package or xbacklight from acpilight? If the former, replace it with the latter
Online
Regardless of that you'll have to export the DISPLAY and possibly XAUTHORITY variables for X11 clients to work in this context.
If you've been using the xbacklight package and that works in your X11 session it also means you're likely using the xf86-video-intel
If that performs better w/ your IGP than the modesetting driver, make sure to install mesa-amber instead of mesa.
Offline
Pages: 1