Написал костыль, позволяющий использовать неработавшие ранее клавиши изменения яркости. Устанавливаю в скрипте яркость так: setpci -s 00:02.1 f4.b=FF (FF - макс. яркость).
Скрипт (/usr/bin/rbrightness) занес в sudoers:
# /etc/sudoers
#
# This file MUST be edited with the 'visudo' command as root.
#
# See the man page for details on how to write a sudoers file.
#
Defaults env_reset
# Host alias specification
Host_Alias LOCAL = 127.0.0.1
# User alias specification
# Cmnd alias specification
# User privilege specification
root ALL=(ALL) ALL
ALL LOCAL = NOPASSWD: /usr/bin/rbrightness
# Allow members of group sudo to execute any command
# (Note that later entries override this, so you might need to move
# it further down)
%sudo ALL=(ALL) ALL
#
#includedir /etc/sudoers.d
# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL
Однако, скрипт выполняется (не из под рута) с ошибкой - не может вызвать setpci - недостаточно прав.
Вопрос: как лучше всего это пофиксить?