NumLock is completely useless, and I want to disable it completely on Linux

15,656

Solution 1

Well for your first question, you can remap it to nothing with xmodmap:

xmodmap -e "keycode # = """

where # is the scan code of NumLock. You can find the scan code using xev. Instead of nothing you can remap it to any key you'd like.

Solution 2

I noticed this was tagged "Gnome", however for those who ended up here and are using KDE, it is really easy to make the numpad always print numbers.

In System settings > Hardware > Input devices > Keyboard > Advanced

Check "Configure keyboard options" then check "Miscellanous compatibilty options" > "Numeric keypad always enter digits (as in Mac OS)"

Click apply and it works directly.

"Miscellanous compatibilty options" > "Toggle PonterKeys with Shift + NumLock" Will turn on/off mouse emulation by Shift + NumLock, however this is off by default.

Solution 3

For Ubuntu 16.04 - xmodmap is not a permanent solution. Instead, install "Gnome Tweak Tools", navigate to Typing-->Miscellaneous Compatibility Options, and select "Numeric keypad keys always enter digits".

Solution 4

Well I know for sure that if you run this as root, it will enable Num Lock, and at least on my machine I cannot turn it off,

echo /etc/rc.local >> 'for tty in /dev/tty?; do /usr/bin/setleds -D +num < "$tty"; done'

I am using Arch Linux, so you might want to find the appropriate file for your particular flavour of *nix... but this should enable Num Lock at boot, and leave the actual key open to be remapped. I love the idea of using it as a modifer to type in Hex, I hadn't thought of that.

Solution 5

Following John and niXar's answer above, for a standard keyboard, this should be added to your .xprofile or a similar file:

xmodmap -e 'keycode 77 = NoSymbol Num_Lock'

Explanation:

  • xmodmap is a "utility for modifying keymaps and pointer button mappings in Xorg".
  • -e evaluates a xmodmap command.
  • keycode is a command to assign keycodes (physical keys) to keysyms ("encoding of a symbol on the cap of a key", see below.)
  • Keycode 77 is the NumLock key.
  • The first keysym, NoSymbol is the key press output when no modifiers are pressed with this key.
  • The second keysym, Num_Lock is the key press output when the shift modifier is pressed with this key.
Share:
15,656

Related videos on Youtube

niXar
Author by

niXar

Updated on September 17, 2022

Comments

  • niXar
    niXar over 1 year

    Forget all the rants about Caps Lock, Num Lock is the most useless key of them all. It's never, ever useful. You don't want to use your numpad as an arrowpad, since the arrows are 1cm away from it. Ever.

    There was a time when some keyboards had a numpad but no dedicated arrow keys. They don't exist anymore. You can find keyboards with no numpad but with arrow keys, but not the opposite.

    Therefore, Num Lock is useless, and it only serves to aggravate me and, I presume, others. Please note that I do not want to know how to turn Num Lock on at startup, I do not want to know how to tear the key off, I want to disable it so that it stays on all the time and can't be turned off by mistake. Any idea how to do that?

    Ideally I'd like to be able to reclaim the key for another use, such as a modifier that allows me to type hex on the numpad.

    Additionally I'd love to know how to turn off the equally useless mouse emulation triggered by Shift + Num Lock.

    • niXar
      niXar over 14 years
      And how do you get the nice key cap style in MarkDown? Couldn't find it!
    • John T
      John T over 14 years
      It's <kbd></kbd>
    • kmarsh
      kmarsh over 14 years
      +1 I admire your passion, it reflects my feelings on CapsLock vs Ctrl.
    • prajakta
      prajakta over 14 years
      low tech solution: lever the key off the keyboard
    • niXar
      niXar over 14 years
      @rich: I said I didn't want to hear about that, and it doesn't solve the problem, since if for some reason numlock turns off, you can't turn it back on.
    • Kevin M
      Kevin M over 14 years
      I'd advise editing out the rant; there are inevitably some uses that your experience doesn't come across, such as uses that Mad Fish pointed out. From the FAQ: Avoid asking questions that are subjective, argumentative, or require extended discussion. This is not a discussion board, this is a place for questions that can be answered!
    • niXar
      niXar over 14 years
      @Kevin: and what are those uses? I haven't found one in the last 20 years.
  • niXar
    niXar over 14 years
    Well thank you very much, that answered my question. I did xmodmap -e 'keycode 77 = ISO_Level3_Shift Num_Lock', so that I can turn the thing on if it goes off, and use the key itself as a modifier.
  • John T
    John T over 14 years
    Nice idea, well done :)
  • Tim Kuipers
    Tim Kuipers almost 6 years
    Works for me: on Linux Mint 18.2: Keyboard > Layouts > Options... > "Miscellanous compatibilty options" > "Numeric keypad always enter digits (as in Mac OS)"
  • Tim Kuipers
    Tim Kuipers almost 6 years
    I've noticed that for 25% of all my applications the numeric keys on the keypad behave always as if num lock is off. KDevelop and Cura have their num lock behavior inverted after the above fix.
  • edmondscommerce
    edmondscommerce almost 6 years
    Same for Fedora
  • rur
    rur over 3 years
    Works great for Ubuntu 18.04. I found the option under "Keyboard & Mouse" -- "Additional Layout Options" -- "Miscellaneous Compatibility Options"