Upgraded office to Logitech K235 kbd/mice. How can I help my users who are complaining that there is no caps lock light?

7,895

Solution 1

Software

You can have them install Keyboard LEDs system tray icon, which will display the status of their caps/num/scroll lock keys.

Hardware

You can shop for another keyboard, or get a dedicated caps lock light (seems like a waste of cabling / desk space to me though, plus it's an additional purchase that might be more expensive than replacing your keyboards.)

User Training

Tell users to quit looking at the keys and learn how to touch type! Touch typing is so much better in so many ways. It's faster, more comfortable, and you can see the results of your input instantly, instead of typing several sentences or paragraphs and THEN looking. If you're touch typing, you rarely even notice the little caps lock light, because your hand/fingers tends to cover it up.

If while touch typing you make a mistake and activate caps lock by accident, you'll notice it right away because you're looking at every character you produce as you produce them, and might type maybe a couple characters in caps before you realize it, delete, and re-type... much, much less re-work than if you were typing by looking at the keys!

Time Travel

Before buying a bunch of keyboards for an office and rolling them out, buy a small number of them and get a focus group of users to test them out, make sure they have the features and ergonomics desired. Hopefully any major complaints like this would be worked out during the testing.

Solution 2

Assuming that your co-workers are using Windows 7, 8/8.1, or 10, you can enable a notification for when Caps lock (as well as Num and Scroll locks) are pressed. To do this:

  1. Open up Control Panel.

  2. Go to Ease of Access Center.

  3. Make the keyboard easier to use.

  4. Check the "Turn on Toggle Keys" check box.

  5. Click "Apply", then "OK".

After that, they will hear a tone when those buttons are pressed.

Solution 3

  1. Add your own CapsLock indicator. Install AutoHotkey, it's a general keyboard automation program, could be greatly useful for automatically expanding short forms of words, adding keyboard shortcuts to programs, etc.

Then edit the config and add something like :

$CapsLock::
SoundBeep, 440,500       
SoundBeep, 440,500 
SoundBeep, 440,500        
SoundBeep, 349,350        
SoundBeep, 523,150        
SoundBeep, 440,500        
SoundBeep, 349,350        
SoundBeep, 523,150        
SoundBeep, 440,1000 
SoundBeep, 659,500        
SoundBeep, 659,500        
SoundBeep, 659,500        
SoundBeep, 698,350        
SoundBeep, 523,150        
SoundBeep, 415,500        
SoundBeep, 349,350        
SoundBeep, 523,150        
SoundBeep, 440,1000
Send {CapsLock}
return

Now every time they press capslock, they get a rousing StarWars Imperial March audio to let them know.

Should that ever get tiresome, you could replace it with any helpful thing the people wanted - launch a program, run a script, play a sound file, blink the screen, shake a window around, change a colour somewhere, anything from the AutoHotkey command list or any program or script it can launch or any Win32api function it can call.

  1. Almost every day I hear about someone who was touch-typing only to discover they had bumped the caps lock key and then had to go back and retype what they had just finished.

Seriously though, this is a sign of miserably, depressingly weak tools or lack of IT training / exploration. Any text editor worth its salt can swap the case of selected text.

The worst it should be is a copy/paste to a good editor and back again, not a retyping. (And that copy-paste, change-case, copy-paste could be automated with AutoHotkey).

Solution 4

You could disable Caps Lock, or convert it to be a shift key using a registry entry.

KeyTweak will do it with a GUI, but its help file details the registry key you'd need to edit, which could make roll out faster.

Share:
7,895

Related videos on Youtube

SDsolar
Author by

SDsolar

This photo of the igloo with the satellite dish reminds me of my roots - I am from Alaska. If you look closely you can see the noonday sun on Dec 21 at its highest point. And of course that igloo can only exist about 7 months of the year. Also if you look closely you will notice the dish is at an unnatural angle for the far north. From there, the TV satellites are right down on the southern horizon. And of course you have to wonder where the power is coming from to light the place and run the TV. The only thing missing from this photo is my favorite thing of all: The Northern Lights. That is the one thing I miss most about Alaska.

Updated on September 18, 2022

Comments

  • SDsolar
    SDsolar over 1 year

    The question is in the title.

    I just upgraded an office from older keyboards which were starting to fail from overuse.

    The new K235 units have a nice feel and am hearing no complaints about the decision to go with this less-expensive model.

    But I am getting some grumbling from some people that the new ones do not have a caps lock light.

    (They don't appreciate my telling them that I merely removed that keycap from mine).

    Almost every day I hear about someone who was touch-typing only to discover they had bumped the caps lock key and then had to go back and retype what they had just finished.

    So is there a way I can help these hard workers?

  • SDsolar
    SDsolar about 7 years
    YES! Just the sound alone is enough to do the trick. Thank you!
  • Cave Johnson
    Cave Johnson about 7 years
    @SDsolar I wonder if you meant to accept or comment on Service Manager's answer since this answer doesn't mention anything about a sound.
  • SDsolar
    SDsolar about 7 years
    Clearly you haven't installed this software. Yes, it puts a flag on the screen, but more importantly it beeps when you touch that key. For people looking at documents and not at their screens, that sound is perfect. Then when they glance up they can see why it beeped. It is an awesome program. Much better than a caps lock light on the keyboard because they're not looking there, either. These are real workers.
  • SDsolar
    SDsolar about 7 years
    I didn't know that. Thank you for the info.
  • Chris H
    Chris H about 7 years
    "Tell users to learn to touch type" Learning is a time-consuming process and will slow them down at first on top of the time spent doing typing exercises. The OP probably doesn't have the authority to require this in company time, they certainly don't have the authority to tell people to learn a new skill on their own time.
  • IMSoP
    IMSoP about 7 years
    Nitpick: "you rarely even notice the little caps lock light, because your hand/fingers tends to cover it up". Except on laptops and similar compact designs, where they're sometimes built into the key cap, the lock lights on all the keyboards I've ever used are at the top right above the number pad. Unless you're typing upside down, there's no chance of those being covered up while typing. In fact, that's probably why they put them there.
  • Chris H
    Chris H about 7 years
    @IMSoP I tend not to notice them in the top right corner when typing text. Old keyboards with them in the keys were nicer, or even above the F-keys. My old wireless logitech had them in the receiver which put me in the same position as the OP's users.
  • Chris H
    Chris H about 7 years
    That would be evil. Part numnbers often have to be typed in all uppercase; even some forms require large amounts of uppercase. Some touch typists are/were taught to use CapsLock,<letter>,CapsLock instead of Shift+<letter> for ergonomic reasons
  • Sir Adelaide
    Sir Adelaide about 7 years
    Well, if you work for Google, better not use this answer then. I've found it useful on my own pc though.
  • Mr Lister
    Mr Lister about 7 years
    This is a workaround, not a solution. Certainly not a solution for everyone. If people wanted to disable their Caps Lock, they would have done so already and installing new keyboards would have had no effect.
  • Chris H
    Chris H about 7 years
    @SirAdelaide I've got a chromebook, and on the rare occasions when it's running chromeos rather than debian it's quite irritating to have to remember to press Alt+Search for CapsLock, instead of just Search (which is where CapsLock should be)
  • Peter - Reinstate Monica
    Peter - Reinstate Monica about 7 years
    I strongly favor this solution. It is one of the first things I do on a new Windows computer, after installing virtuawin, putting the task manager in the autostart folder and moving the task bar to the side in order to gain vertical space. The use cases for caps lock are extremely rare in my (software developing and casual computer use) experience. Of course some people dealing with lots of upper case labels may disagree; yes, they should keep the caps lock. THE OCCASIONAL NEED TO TYPE AN UPPERCASE SENTENCE CAN BE SERVED BY HOLDING THE SHIFT KEY. I assure you.
  • Michael McGriff
    Michael McGriff about 7 years
    Disabling caps lock is massive overkill for this problem. I use caps lock every single day many times a day as a software developer. I'm not interested in having to hold the shift key down and you shouldn't force that on your staff simply to save a few $ on keyboards. I can also second the comment by @ChrisH, I found it quite irritating to use a chromebook specifically because of this issue.
  • Admin
    Admin about 7 years
    @Peter: Have you ever had to type lots of postal codes? It's bloody murder without a caps lock key. For those who don't know, postal codes (at least here in Canada) are in the format A0A 0A0. Holding Shift doesn't quite cut it, because that shifts the number row too.
  • Admin
    Admin about 7 years
    This has the advantage that nothing needs to be installed. If you want a shortcut, press Win+U to open the Ease of Access centre.
  • Chris H
    Chris H about 7 years
    @FighterJet similar in the UK: AB12 3CD would be typical here.
  • Peter - Reinstate Monica
    Peter - Reinstate Monica about 7 years
    @FighterJet The pitiable individuals who type "lots of postal codes" (in 2017? Really?) strictly fall in the "they should keep the caps lock" category.
  • mfsiega
    mfsiega about 7 years
    @SDsolar if you are concerned about security per your comment on CCTO's answer below, surely you realize that broadly installing software downloaded from keyboard-leds.com (a site not even serving HTTPS) is a greater security risk than a malicious insider providing their own keyboard?
  • Admin
    Admin about 7 years
    @Peter: What do you mean, in 2017? I have to type my postal code every time I type in my address, whether that's because I'm ordering something, I'm updating my driver's licence, or any other reason. A sizable portion of the western world uses postal codes in its addresses, so the "pitiable individuals" is not an insignificant number.
  • jamesqf
    jamesqf about 7 years
    Re touch-typing, that only works well when you're inputting plain text. For programming &c, many important keys (like {}) tend to be in different places on different keyboards.
  • allquixotic
    allquixotic about 7 years
    My comment about the caps lock light was indeed based on experience with "compact" keyboards. It's been a long time since I've used a full-sized keyboard with LEDs in the top-right. I kinda forgot that was a thing :P
  • Sir Adelaide
    Sir Adelaide about 7 years
    Ok, so an updated answer could be: "move all your staff to a country that doesn't need capital letters in post codes, THEN disable caps lock"? Australia has 4 numbers. 1234. Could be nice weather?
  • SDsolar
    SDsolar about 7 years
    Upvote for the Star Wars tie-in.
  • SDsolar
    SDsolar about 7 years
    I like the software in the accepted answer. While interesting, this one sounds a lot like actual work. And if I disabled ANYTHING then I might end up with a mutiny on my hands. Right now I am Santa Claus, and that's how I would prefer it to stay.
  • IMSoP
    IMSoP about 7 years
    @jamesqf Different keyboard layouts is a separate issue from different keyboard models. All full-sized UK PC keyboards will have keys like {} in exactly the same place. If you're often using a laptop, or a Mac, or switching between keyboards with different national layouts, then yes, this is a problem for touch-typing. But outside of US and UK, that goes well beyond punctuation - French keyboards have a top row starting "AZERTY", and German ones "QWERTZ", for instance. (And yes, I typed this comment without looking down at my keyboard once.)
  • Peter - Reinstate Monica
    Peter - Reinstate Monica about 7 years
    @FighterJet Typing the occasional postal code with the shift key shouldn't be a problem. Yes, lots of them would be cumbersome; my "2017" remark indicated my hope that repetitive data-inserting work would be automated these days (e.g. with Word or banking software accessing customer data bases, or with the browser pre-filling input fields). And I was not being sarcastic: If such input is frequently enough necessary, one should by all means keep the caps lock key. I also acknowledge that these customizations are a matter of taste and ability (I hit the caps lock key often inadvertently).
  • GMasucci
    GMasucci about 7 years
    Hah, I can do you one better, I typed this without looking at either of my 2 screens at all! (yep, given a choice between looking at my keyboard or my screen, I would rather look at the keyboard, strange I know but comes from years of typing peek and poke lists on a C64)
  • GMasucci
    GMasucci about 7 years
    A nice elegant solution did not know about the tone on this either.
  • GMasucci
    GMasucci about 7 years
    I would not say my fingers are fat, but my left pinky has a caps-lock fetish at random (or maybe a tab avoidance issue) that makes me wonder if it isn't actually 3cm thick: usually when it will interrupt the flow of coding most.
  • micstr
    micstr about 7 years
    Yes the Force is strong with this one...
  • njzk2
    njzk2 about 7 years
    +1 for not retyping stuff just because of case.