1

I would like to turn on my keyboard backlight at boot so I don't have to manually with terminal at each boot.

The code that works for me in terminal is "sudo xset led 3". Without quotes.

I tried using the startup applications and added a new startup program named Keyboard Backlight and I put the command "sudo xset led 3" but was not successful because it didnt load at boot, what did I do wrong? I think I might have to create a .bin file and locate it?

If there is a easier solution like downloading another program that can load commands at boot that are not .bin files please tell me about it!!

Jason
  • 11

1 Answers1

0

Create or open and append script /etc/rc.local

sudo nano /etc/rc.local

Add your command without sudo, as it will run at startup as root.

#!/bin/sh    
/usr/bin/xset led 3

Save, reboot and have fun

LeonidMew
  • 2,802