On Thu, Oct 09, 2025 at 12:50:46PM +0300, Divan Santana wrote: > Greetings :) > > Do you know if there is a native way in openbsd to make the enter key > double as a mod like super? (not using xcape)
Yes, you can do it with xmodmap. For example, to keep normal functionality of enter but make shift-enter into another control key: keycode 36 = Return Control_L Return Control_L add Control = Control_L Note that you need the 'add Control' line, just adding the Control_L keysym to the keycode isn't enough.

