Small utility to set the caps lock state.
The setcaps
function is stolen from here: http://askubuntu.com/a/80301
Turn caps lock on:
setcapslock on
Turn caps lock off:
setcapslock off
To build the binary type:
make
I came by the following suggestions for alternative solutions (none of which ended up working for me):
setleds -caps
(setleds complains and exits without doing anything)xkbset nullify -lock
(I don't have xkbset in repositories, so cannot verify)xset led named 'Caps Lock'
(does not work for caps lock on my machine)
Beware, this utility does NOT turn of your caps lock key. For this task I found either of the following commands sufficient:
setxkbmap -option caps:none
(or even better use "caps:escape" to reassign to escape key!) (see: http://unix.stackexchange.com/a/75492)xmodmap -e "clear Lock" -e "keysym Caps_Lock = Escape"
(the statements can also be put into .Xmodmap config file)
According to this post the following commands can be used to toggle the caps lock state:
xdotool key Caps_Lock
(works for me!)xte "key Caps_Lock"
(xte
is in thexautomation
package but complains about bad parameter on my machine)