Disable capslock LEDs light

capslockkeyboardled

I'd like to know if there's a way to disable the LED light of my capslock key. I'd like to use it for gaming but everytime I press it the LED turn on and it blinds me.

Best Answer

You can use a tool like AutoHotKey to rebind it to another unused key, which won't allow capslock to be enabled and thus disable the light. I recommend reading the AutoHotKey Tutorial for more information on how to get started.


For example, I use AutoHotKey to rebind CapsLock to Ctrl:

Capslock::Ctrl

Simply place that in a text file with an extension of .ahk, double click, and you're off!

Related Question