Is it possible to disable a key in MacOs without installing a third party program (e.g. Karabiner)?
One of my keys is stuck and gets pressed continuously.
In Unix it is easy to do with xmodmap, is there an equivalent for mac.
Is it possible to disable a key in MacOs without installing a third party program (e.g. Karabiner)?
One of my keys is stuck and gets pressed continuously.
In Unix it is easy to do with xmodmap, is there an equivalent for mac.
I'm still going to recommend you use Karabiner: it's easy, works well, and does exactly what you need to do. However, if you insist otherwise...
Unless your keyboard happens to be the Caps Lock, Control, Option, Command, or Function key, it cannot be easily remapped or disabled natively. Karabiner is your best bet.
If it is one of those keys, it can be disabled in System Preferences -> Keyboard -> Modifier Keys -> [The key you want] -> No Action.
However, if it's not, you'll have to create a custom keyboard layout. You can either do this by hand(ish), as suggested by Apple, or using a program called Ukelele. There's simplified instructions on apple.stackexchange.com, but I encourage you read the full documentation, it's not the easiest process. However, the main idea is you simply want to unlink the output of the keyboard, then save and install the layout.
Ukelele is essentially just a UI for OSX's .keylayout files, and you can manually edit them if you prefer. They're XML files and the schema is located at /System/Library/DTDs/KeyboardLayout.dtd
For example, this diff should change s to f:
-<key code="1" output="s"/>
+<key code="1" output="f"/>
You'll have to create a proper "bundle" folder in ~/Library/Keyboard Layouts, though, and it may be difficult to access the default layouts to get a sample to start from. You can find many custom ones on GitHub and other places online (example), so you could download one and modify it for your purposes.
Or if you want to compromise, you could use Ukelele to create a sample bundle based on your current layout, then uninstall it. At that point you can manually review the contents of the folder, manually modify it to fit your needs, and install it.