I am using a python program that is activate when pressing Caps Lock key and I want to be able to turn on/off the caps lock status when the program is active.

I tried to send keys with virtkey but it obviously don't work since the keys just activate the app and don't change the caps lock status. So what is the best way to achieve this with python?

I'm using Ubuntu

link|improve this question
Thank you guys, but the code Daniel posted is just for changing the Led lights and since I'm on Linux the SendKeys doesn't work and I'm afraid it will send the keypress event which won't help me. I got a code using C but it seems to simulate key press and it don't work either. On Windows, when programming with Delphi I remember that there were a notification to OS that switch the state without having to worry about key press. There's no similar way to do the same on Linux? – Anderson Santos Feb 2 '10 at 14:27
feedback

3 Answers

On Linux:

import fcntl
import os

KDSETLED = 0x4B32

console_fd = os.open('/dev/console', os.O_NOCTTY)

# Turn on caps lock
fcntl.ioctl(console_fd, KDSETLED, 0x04)

# Turn off caps lock
fcntl.ioctl(console_fd, KDSETLED, 0)

Source: Benji York - Stack Overflow: Change keyboard locks in Python


On Windows:

You should be able to use SendKeys for this, as in the following example:

import SendKeys

SendKeys.SendKeys("""
{CAPSLOCK}
""")
link|improve this answer
feedback

Use sendkeys to change the status and keyboardleds to change the LED indicators.

sendkeys:

From another SO dicussion:

import SendKeys

SendKeys.SendKeys("""
{CAPSLOCK}
{SCROLLOCK}
{NUMLOCK}
""")

keyboardleds:

This package seems to work only for POSIX (which is OK if you're using Ubuntu), and you can read more here.

link|improve this answer
feedback

You could send the following commands to the terminal to deactivate and activate caps lock, respectively.

xmodmap -e “clear Lock”

xmodmap -e “add Lock = Caps_Lock

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.