Change keyboard backlight from cmd line?

This works, thanks! Is there anyway to set the led brightness too?

Just use darker colours.

1 Like

The three numbers are the RGB components (red, green, blue) in hexadecimal, and each number goes from 0 to 255 intensity (but note that instead of RGB it reads BGR, and instead of using decimal numbers it reads hexadecimal values). So “0 0 FF” means no Blue, no Green and Red at full intensity.

2 Likes

I love being able to change the keyboard color to amber from the command line with…

printf 'xLRGB\x00\x11\x30' | sudo tee /dev/hidraw0

I’ve been trying to get the same effect via a cron job by adding the code below to my su crontab and have been getting mixed results

@reboot sleep 30 && test -c /dev/hidraw0 && printf 'xLRGB\x00\x11\x30' > /dev/hidraw0

If I use double quotation marks on either side of the xLRGB portion it doesn’t work.

If I use single quotation marks on either side of the xLRGB portion it works, but only changes the keyboard color to cyan no matter the value I’ve added.

Anyone have an idea as to why this may be happening?

Try to specify the path for printf, so you are not using any shell builtin, use /usr/bin/printf instead of printf.

1 Like

Bingo! That did it. Thanks a million!

For future reference to anyone else, the code below is what worked for in my su crontab. Change the sleep value and the RGB values to whatever you desire.

@reboot sleep 10 && test -c /dev/hidraw0 && /usr/bin/printf 'xLRGB\x00\x11\x30' > /dev/hidraw0
2 Likes

I may need to move this to a new thread. I have been playing with the firmware of the keyboard and I think we could edit the firmware to have the default config unless a file is present. If “File” is present the basic color, brightness and timeout for the backlight could be adjusted and polled by the firmware for changes. Would anyone else be interested in these changes?

1 Like

Sounds good. I have a script to update mine when I update my wallpaper (using imagemagick to determine a predominant colour, and to change the brightness & saturation) - just not quite happy enough with how it’s working to share it yet.

1 Like