When I type this in a terminal I can disable the "num lock"
xmodmap -e "keycode 77 = """
Now I want to disable it on startup. I type,
sudo crontab -e
It opens a nano page in which I type
@reboot ~/.xmodmap -e "keycode 77 = """
Or
@reboot xmodmap -e "keycode 77 = """
But neither one works. what is the problem here?