18

I am running the latest version of Linux Mint with Cinnamon. I'm trying to map Caps Lock to Ctrl, but I cannot figure out how to do it. All web searches I've done have led me to older versions of Linux Mint (there is no keyboard layout option in my settings). How can I do this?

Jeff Schaller
  • 67,283
  • 35
  • 116
  • 255
Zach Russell
  • 1,037
  • 3
    Can you update your question to indicate exactly what the latest version is? This question could be here for years. – Keith Thompson Feb 08 '14 at 00:25
  • As a guide line ... the 'current' Linux Mint release is #18 (~2016), so quoting "the latest" of almost anything in computing is going to rapidly fade the 'factual' colour. (Including this one.) – will Sep 21 '16 at 13:32

8 Answers8

24

You can accomplish this with xmodmap. Add the following to ~/.xmodmap:

remove Lock = Caps_Lock
keysym Caps_Lock = Control_L
add Control = Control_L

and run the command xmodmap ~/.xmodmap. You can put this command in whatever startup files are processed by your WM or DE. This will only work in X but it will work regardless of what graphical environment you use.

casey
  • 14,754
  • What would be an ideal place for this command for a user of Linux Mint Cinnamon? – Zamicol Jan 12 '15 at 06:55
  • Using xmodmap and the solution in your startup file sucks a bit, there is no answer for the question Zamicol raised and if you'd put it in your .profile it will only be applied if you have your terminal opened. The solution by @don_crissti using gnome-tweak-tool is nicer; it allows the setting to be active when your WM starts – MichielB Nov 01 '21 at 19:32
21

I found it. It was moved to the regional preferences section:

Go to settings > regional preferences > keyboard layouts > settings and expand the caps lock section.

UPDATE:

In Linux Mint 17.1 you can get to it via;

System Settings > Hardware > Keyboard > Keyboard Layouts > Options > Caps Lock key behavior

mrcook
  • 103
Zach Russell
  • 1,037
12

No need to use the obsolete xmodmap as there's already an xkb option - namely ctrl:nocaps e.g. in terminal:

setxkbmap -option ctrl:nocaps

With gnome 3 you can either use dconf-editor and add ctrl:nocaps to your xkb-options under org > gnome > desktop > input sources:

enter image description here

or simply enable Caps Lock as Ctrl in gnome-tweak-tool under Typing > Ctrl key position:

enter image description here

don_crissti
  • 82,805
3

For LinuxMint 17 with KDE it was: System Settings > Input Devices > Keyboard > Advanced > Ctrl key position

Roger
  • 131
3

I realize that this already has an accepted answer, but here is the One True Way to change Caps Lock to ctrl. This works on all versions of Linux, all distros, for the entire system (console, X, whatever). It sets the mapping in the kernel where it should be.

(echo $(dumpkeys |grep -i keymaps); echo keycode 58 = Control) | loadkeys -

Add this to a start up script (e.g., /etc/rc.local, or create your own).

On Debian (and derivatives) dumpkeys/loadkeys is part of the kbd package, if for some reason it's not already installed.

bahamat
  • 39,666
  • 4
  • 75
  • 104
1

On Mint 17.2, select Preferences -> Keyboard -> Layouts -> Options, select Caps Lock key behavior, select "Make Caps Lock an additional control."

Stu
  • 11
0

Updating this thread for Linux Mint 18.3 (Beta) as this option seems to be a moving target.

  1. Click on Control Center from the Start Menu and select the Keyboard button.
  2. In the popup window, select the Layouts tab.
  3. In the Layouts window. click on the Options button towards the bottom.
  4. In the Options list, expand the one that says "Ctrl key position".
  5. Towards the bottom select the checkbox next to "Swap Ctrl and Caps Lock".
ddnomad
  • 1,978
  • 2
  • 16
  • 31
0

Here is a distilled version:

0) Make sure Caps Lock is OFF

1) Create the following file:

/etc/udev/hwdb.d/10-caps-modifier.hwdb
---
evdev:atkbd:dmi:*            # built-in keyboard: match all AT keyboards for now
  KEYBOARD_KEY_3a=leftctrl   # bind capslock to leftctrl

2) Run the following command:

$ systemd-hwdb update

3) Run the following command to make the remapping take immediate effect:

$ udevadm trigger

This was tested on Ubuntu 18.04.2 LTS running Xfce. The remapping works great in tty consoles, and the X input system.

Thanks to this page for all the details: https://wiki.archlinux.org/index.php/Map_scancodes_to_keycodes but it took a lot of effort to parse out what actually needed to be done.

jdsumsion
  • 101