1

My keyboard has a small Enter key and the right Shift which is bigger and I do not really use it. Would it be possible to remap the right Shift key to work as the Enter key, as well?

I tried this but it did not work. 62 is my right SHift (used xev for that) but maybe Enter is not the right command, or maybe it is wrong altogether.

xmodmap -e "keycode 62 = Enter"

cerebrou
  • 476
  • 1
  • 8
  • 17
  • 1
    You used Xev to find the keycode, now with the same tool you just need to find the keysym by pressing Enter, to find the answer: Return. Right under your nose :P – Quasímodo Jan 28 '23 at 15:13
  • That makes sense, thanks! Return instead Enter works like a charm. Please consider making an answer. – cerebrou Jan 30 '23 at 13:37

1 Answers1

0

You can use the remapper deamon keyd for this purpose. See this answer for installation, usage and tips.

After installation, use the config below.

[ids]

[main]

rightshift = enter

Rasmus
  • 8,375