use noctalia ipc for brightness

This commit is contained in:
Sean Kovacs 2025-12-29 19:21:46 -05:00
commit 7b3da66748
Signed by: sckova
GPG key ID: 00F325187C68651A

View file

@ -192,12 +192,12 @@
}; };
"XF86MonBrightnessUp" = { "XF86MonBrightnessUp" = {
action.spawn = ["brightnessctl" "--class=backlight" "set" "+5%"]; action.spawn = ["noctalia-shell" "ipc" "call" "brightness" "increase"];
allow-when-locked = true; allow-when-locked = true;
}; };
"XF86MonBrightnessDown" = { "XF86MonBrightnessDown" = {
action.spawn = ["brightnessctl" "--class=backlight" "set" "5%-"]; action.spawn = ["noctalia-shell" "ipc" "call" "brightness" "decrease"];
allow-when-locked = true; allow-when-locked = true;
}; };