Disable Caps Lock on Linux

xmodmap command to turn off caps key

To turn off caps lock key, enter:
$ xmodmap -e “remove lock = Caps_Lock”
Now caps key is disabled. To enable caps key, enter:
$ xmodmap -e “add lock = Caps_Lock”
Add following code to your shell startup file ~/.bash_profile or ~/.profile file:
$ echo ‘xmodmap -e “remove lock = Caps_Lock”‘ >> ~/.bash_profile
setxkbmap command to turn off caps locks key

To turn off caps lock key, enter:
$ setxkbmap -option ctrl:nocaps
To reset caps lock. enter:
$ setxkbmap -option

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.