2

I use the following code to deactivate the num lock key.

xmodmap -e "keycode 77 = """

How can I activate the num lock key again? I think I have to use something like:

xmodmap -e "keycode 77 = ?

but I do not know what use instead of ?

Jeff Schaller
  • 66,199
  • 35
  • 114
  • 250
Kian Maleki
  • 131
  • 3

1 Answers1

5

You need to set the key back to Num_Lock:

xmodmap -e "keycode 77 = Num_Lock"

Vojtech Trefny
  • 16,922
  • 6
  • 24
  • 48