1) Instale o xbacklight:
sudo apt-get install xbacklight
2) Teste no console:
xbacklight -inc 10
xbacklight -dec 10
3) Adicione teclas de atalho à sua configuração incrível ~ / .config / awesome / rc.lua
Insira dentro da seção [globalkeys = awful.util.table.join] o seguinte texto:
awful.key({ }, "XF86MonBrightnessDown", function ()
awful.util.spawn("xbacklight -dec 15") end),
awful.key({ }, "XF86MonBrightnessUp", function ()
awful.util.spawn("xbacklight -inc 15") end)
Eu uso um teclado sem o XF86MonBrightness * é por isso que adicionei ligações ao Mod + o, Mod + p:
awful.key({ modkey, }, "p", function ()
awful.util.spawn("xbacklight -dec 15") end),
awful.key({ modkey, }, "o", function ()
awful.util.spawn("xbacklight -inc 15") end)
Espero que isso ajude)